aboutsummaryrefslogtreecommitdiffstats
path: root/test/openssl/test_bn.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/openssl/test_bn.rb')
-rw-r--r--test/openssl/test_bn.rb10
1 files changed, 8 insertions, 2 deletions
diff --git a/test/openssl/test_bn.rb b/test/openssl/test_bn.rb
index 769b7ed831..7136de9a27 100644
--- a/test/openssl/test_bn.rb
+++ b/test/openssl/test_bn.rb
@@ -9,8 +9,14 @@ class OpenSSL::TestBN < Test::Unit::TestCase
end
def test_prime_p
- OpenSSL::BN.new((2 ** 107 - 1).to_s(16), 16).prime?
- OpenSSL::BN.new((2 ** 127 - 1).to_s(16), 16).prime?(1)
+ assert_equal(true, OpenSSL::BN.new((2 ** 107 - 1).to_s(16), 16).prime?)
+ assert_equal(true, OpenSSL::BN.new((2 ** 127 - 1).to_s(16), 16).prime?(1))
+ end
+
+ def test_cmp_nil
+ bn = OpenSSL::BN.new('1')
+ assert_equal(false, bn == nil)
+ assert_equal(true, bn != nil)
end
end