summaryrefslogtreecommitdiff
path: root/test/openssl/test_random.rb
blob: 8c69d5431c4008518faef1853de9c10581a7ecdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: false
begin
  require "openssl"
rescue LoadError
end

class OpenSSL::TestRandom < Test::Unit::TestCase
  def test_random_bytes
    assert_equal("", OpenSSL::Random.random_bytes(0))
    assert_equal(12, OpenSSL::Random.random_bytes(12).bytesize)
  end

  def test_pseudo_bytes
    assert_equal("", OpenSSL::Random.pseudo_bytes(0))
    assert_equal(12, OpenSSL::Random.pseudo_bytes(12).bytesize)
  end
end if defined?(OpenSSL::Random)