scinote-web/spec/factories/tinymce_assets.rb
2019-06-13 12:10:44 +02:00

10 lines
238 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :tiny_mce_asset do
association :team, factory: :team
image_file_name { 'sample_file.jpg' }
image_content_type { 'image/jpeg' }
image_file_size { 69 }
end
end