1234567891011121314151617181920212223242526272829303132333435363738 |
- FactoryBot.define do
- factory 'knowledge_base/answer', aliases: %i[knowledge_base_answer] do
- transient do
- add_translation { true }
- translation_traits { [] }
- end
- category { create(:knowledge_base_category) }
- before(:create) do |answer, context|
- next if answer.translations.present?
- answer.translations << build('knowledge_base/answer/translation', *context.translation_traits, answer: answer)
- end
- trait :with_video do
- transient do
- translation_traits { [:with_video] }
- end
- end
- trait :with_attachment do
- transient do
- attachment { File.open('spec/fixtures/upload/hello_world.txt') }
- end
- after(:create) do |answer, context|
- Store.add(
- object: answer.class.name,
- o_id: answer.id,
- data: context.attachment.read,
- filename: File.basename(context.attachment.path),
- preferences: {}
- )
- end
- end
- end
- end
|