dev-ruby/aws-s3: avoid test that require network access, fixing bug 339324

Package-Manager: Portage-2.3.3, Repoman-2.3.1
This commit is contained in:
Hans de Graaff
2017-04-17 11:25:29 +02:00
parent f07417fccf
commit 1f4844a7ef

View File

@@ -33,6 +33,13 @@ RUBY_PATCHES=(
${P}+ruby19.patch
)
all_ruby_prepare() {
# Avoid tests requiring network access, bug 339324
sed -i -e '/test_request_only_escapes_the_path_the_first_time_it_runs_and_not_subsequent_times/,/^ end/ s:^:#:' \
-e '/test_if_request_has_no_body_then_the_content_length_is_set_to_zero/,/^ end/ s:^:#:' \
test/connection_test.rb || die
}
each_ruby_test() {
${RUBY} -I. -e "Dir['test/*_test.rb'].each {|f| require f }" || die
}