X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/d3700e6201b4b78a70bbb2941572edc985b63c2c..2fabc46421f9e908ef6902ea7c4890a0032af446:/test/models/acl_test.rb diff --git a/test/models/acl_test.rb b/test/models/acl_test.rb index d3d8f26fe..49f065612 100644 --- a/test/models/acl_test.rb +++ b/test/models/acl_test.rb @@ -15,8 +15,16 @@ class AclTest < ActiveSupport::TestCase end def test_no_account_creation_by_domain - assert_not Acl.no_account_creation("192.168.1.1", "example.com") + assert_not Acl.no_account_creation("192.168.1.1", :domain => "example.com") + assert_not Acl.no_account_creation("192.168.1.1", :domain => "test.example.com") create(:acl, :domain => "example.com", :k => "no_account_creation") - assert Acl.no_account_creation("192.168.1.1", "example.com") + assert Acl.no_account_creation("192.168.1.1", :domain => "example.com") + assert Acl.no_account_creation("192.168.1.1", :domain => "test.example.com") + end + + def test_no_account_creation_by_mx + assert_not Acl.no_account_creation("192.168.1.1", :mx => "mail.example.com") + create(:acl, :mx => "mail.example.com", :k => "no_account_creation") + assert Acl.no_account_creation("192.168.1.1", :mx => "mail.example.com") end end