mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 03:07:52 +01:00
9 lines
200 B
Ruby
9 lines
200 B
Ruby
FactoryBot.define do
|
|
factory :invitation do
|
|
sequence(:email) { |n| "user#{n}@example.com" }
|
|
token_digest { "my_token_digest" }
|
|
accepted_at { "2024-09-02 15:19:45" }
|
|
tenant
|
|
end
|
|
end
|