scinote-web/spec/factories/tinymce_assets.rb
aignatov-bio 6ac620feb3
Migration for old tinymce assets [SCI-3176] (#1663)
* adding rake task

* Addign test for update images

* Adding tests for tiny mce model
2019-04-19 15:24:54 +02:00

11 lines
226 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