mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-02 21:51:51 +08:00
6ac620feb3
* adding rake task * Addign test for update images * Adding tests for tiny mce model
10 lines
226 B
Ruby
10 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
|