mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
a731125f12
The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
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
|