12345678910111213141516171819202122 |
- # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- FactoryBot.define do
- factory :store do
- object { 'UploadCache' }
- o_id { 1 }
- preferences { {} }
- created_by_id { 1 }
- txt
- trait :txt do
- filename { 'test.txt' }
- data { 'some content' }
- end
- trait :image do
- filename { '1x1.png' }
- data { Rails.root.join('test/data/image/1x1.png').binread }
- end
- end
- end
|