X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/f28bad7229823d224c1b17342aef9bac64a65f45..f047f86c1d4add3b6cd8074ccaa9b940fa2d0fd8:/test/models/acl_test.rb diff --git a/test/models/acl_test.rb b/test/models/acl_test.rb index 088fee202..6bd87729c 100644 --- a/test/models/acl_test.rb +++ b/test/models/acl_test.rb @@ -5,7 +5,7 @@ class AclTest < ActiveSupport::TestCase acl = create(:acl) assert_predicate acl, :valid? acl.k = nil - assert_not acl.valid? + assert_not_predicate acl, :valid? end def test_no_account_creation_by_subnet @@ -55,4 +55,12 @@ class AclTest < ActiveSupport::TestCase assert Acl.no_note_comment("192.168.1.1", "example.com") assert Acl.no_note_comment("192.168.1.1", "test.example.com") end + + def test_no_trace_download_by_domain + assert_not Acl.no_trace_download("192.168.1.1", "example.com") + assert_not Acl.no_trace_download("192.168.1.1", "test.example.com") + create(:acl, :domain => "example.com", :k => "no_trace_download") + assert Acl.no_trace_download("192.168.1.1", "example.com") + assert Acl.no_trace_download("192.168.1.1", "test.example.com") + end end