Skip Patron tests if Ruby version less than 1.9

This commit is contained in:
Ben Hanzl 2015-03-02 08:35:27 -05:00 committed by Mislav Marohnić
parent e36f029d39
commit 245873dad1

View File

@ -14,7 +14,7 @@ module Adapters
# no support for SSL peer verification
undef :test_GET_ssl_fails_with_bad_cert if ssl_mode?
end unless jruby?
end unless RUBY_VERSION < '1.9' or jruby?
end
end