1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/factories/country_states.rb

12 lines
208 B
Ruby
Raw Normal View History

2018-11-30 11:24:05 -05:00
# frozen_string_literal: true
FactoryBot.define do
2018-11-30 11:32:43 -05:00
factory :country_state do
2018-12-05 19:52:59 -05:00
initialize_with do
CountryState.find_or_initialize_by name: name
end
name { Faker::Address.state }
2018-11-30 11:24:05 -05:00
end
end