mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
13 lines
382 B
Ruby
Executable file
13 lines
382 B
Ruby
Executable file
FactoryBot.define do
|
|
factory :shareable_link do
|
|
description { Faker::Lorem.sentence }
|
|
association :shareable, factory: :my_module
|
|
team { shareable.team }
|
|
association :created_by, factory: :user
|
|
association :last_modified_by, factory: :user
|
|
|
|
after(:build) do |shareable_link|
|
|
shareable_link.uuid = shareable_link.shareable.signed_id
|
|
end
|
|
end
|
|
end
|