X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/3371ca37f1728d6e37202ceff9bd968688f59a8a..be0e33862fedbf02e52a9e126cac31dfb5775b43:/test/models/acl_test.rb diff --git a/test/models/acl_test.rb b/test/models/acl_test.rb index 189f92677..d3d8f26fe 100644 --- a/test/models/acl_test.rb +++ b/test/models/acl_test.rb @@ -5,17 +5,17 @@ class AclTest < ActiveSupport::TestCase acl = create(:acl) assert acl.valid? acl.k = nil - assert !acl.valid? + assert_not acl.valid? end def test_no_account_creation_by_subnet - assert !Acl.no_account_creation("192.168.1.1") + assert_not Acl.no_account_creation("192.168.1.1") create(:acl, :address => "192.168.0.0/16", :k => "no_account_creation") assert Acl.no_account_creation("192.168.1.1") end def test_no_account_creation_by_domain - assert !Acl.no_account_creation("192.168.1.1", "example.com") + assert_not Acl.no_account_creation("192.168.1.1", "example.com") create(:acl, :domain => "example.com", :k => "no_account_creation") assert Acl.no_account_creation("192.168.1.1", "example.com") end