ぼざクリタグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

11 lines
192 B

  1. FactoryBot.define do
  2. factory :ip_address do
  3. ip_address { IPAddr.new('203.0.113.10').hton }
  4. banned_at { nil }
  5. trait :banned do
  6. banned_at { Time.current }
  7. end
  8. end
  9. end