aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@ruby-lang.org>2016-05-18 08:06:23 +0000
committerKazuki Yamaguchi <k@rhe.jp>2016-05-31 11:31:27 +0900
commite6d66d075f81d717dc8d6e1dcf4c3e298cc1792b (patch)
tree5458824f9ab792ab390aa433b758ae4176d3a739 /test
parentc9d098b6053ba26aca6436a84abdde7c62394fe8 (diff)
downloadruby-openssl-e6d66d075f81d717dc8d6e1dcf4c3e298cc1792b.tar.gz
test_random.rb: skip old OpenSSL
* test/openssl/test_random.rb (OpenSSL::TestRandom): ignore out-of-date OpenSSL before 1.0, as well as other tests. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55058 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/test_random.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_random.rb b/test/test_random.rb
index e0c19cd3..ca8427f7 100644
--- a/test/test_random.rb
+++ b/test/test_random.rb
@@ -11,4 +11,4 @@ class OpenSSL::TestRandom < OpenSSL::TestCase
assert_equal("", OpenSSL::Random.pseudo_bytes(0))
assert_equal(12, OpenSSL::Random.pseudo_bytes(12).bytesize)
end
-end if defined?(OpenSSL::Random)
+end if defined?(OpenSSL::TestCase)