aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/security_utils_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/security_utils_test.rb')
-rw-r--r--activesupport/test/security_utils_test.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/activesupport/test/security_utils_test.rb b/activesupport/test/security_utils_test.rb
new file mode 100644
index 0000000000..08d2e3baa6
--- /dev/null
+++ b/activesupport/test/security_utils_test.rb
@@ -0,0 +1,9 @@
+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