aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/secure_random_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/secure_random_test.rb')
-rw-r--r--activesupport/test/secure_random_test.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/activesupport/test/secure_random_test.rb b/activesupport/test/secure_random_test.rb
index 44694cd811..799ac2a87b 100644
--- a/activesupport/test/secure_random_test.rb
+++ b/activesupport/test/secure_random_test.rb
@@ -2,18 +2,18 @@ require 'abstract_unit'
class SecureRandomTest < Test::Unit::TestCase
def test_random_bytes
- b1 = ActiveSupport::SecureRandom.random_bytes(64)
- b2 = ActiveSupport::SecureRandom.random_bytes(64)
+ b1 = SecureRandom.random_bytes(64)
+ b2 = SecureRandom.random_bytes(64)
assert_not_equal b1, b2
end
def test_hex
- b1 = ActiveSupport::SecureRandom.hex(64)
- b2 = ActiveSupport::SecureRandom.hex(64)
+ b1 = SecureRandom.hex(64)
+ b2 = SecureRandom.hex(64)
assert_not_equal b1, b2
end
def test_random_number
- assert ActiveSupport::SecureRandom.random_number(5000) < 5000
+ assert SecureRandom.random_number(5000) < 5000
end
end