mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
9 lines
315 B
Ruby
9 lines
315 B
Ruby
require 'abstract_unit'
|
|
require 'active_support/security_utils'
|
|
|
|
class SecurityUtilsTest < ActiveSupport::TestCase
|
|
def test_secure_compare_should_perform_string_comparison
|
|
assert ActiveSupport::SecurityUtils.secure_compare('a', 'a')
|
|
assert !ActiveSupport::SecurityUtils.secure_compare('a', 'b')
|
|
end
|
|
end
|