Repository URL to install this package:
|
Version:
1.3.0 ▾
|
FactoryBot.define do
factory :school do
sequence(:name) { |i| "School ##{i}" }
end
factory :student, class: Foo::Student do
sequence(:name) { |i| "Student ##{i}" }
end
end