remove-acts-as-taggable #38

Merged
bustikiller merged 4 commits from remove-acts-as-taggable into main 2024-08-11 17:23:27 +00:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit c177131672 - Show all commits

View File

@ -1,7 +1,6 @@
FactoryBot.define do
factory :group do
name { "MyString" }
icon { "MyString" }
sequence(:name) { |i| "Group #{i}" }
order { 1 }
end
end

View File

@ -1,5 +1,7 @@
FactoryBot.define do
factory :guest do
association :group
first_name { Faker::Name.first_name }
last_name { Faker::Name.last_name }
email { Faker::Internet.email }