Add whitelist to EPP

This commit is contained in:
Martin Lensment 2015-05-20 12:47:34 +03:00
parent 9b4e9ca12c
commit dc1ad9e6c5
6 changed files with 28 additions and 5 deletions

View file

@ -10,7 +10,7 @@ Fabricator(:registrar) do
code { sequence(:code) { |i| "REGISTRAR#{i}" } }
reference_no { sequence(:reference_no) { |i| "RF#{i}" } }
accounts(count: 1)
white_ips { [Fabricate(:white_ip_repp, ipv4: '127.0.0.1')] }
white_ips { [Fabricate(:white_ip_repp, ipv4: '127.0.0.1'), Fabricate(:white_ip, ipv4: '127.0.0.1')] }
end
Fabricator(:registrar_with_no_account_activities, from: :registrar) do