mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-27 10:14:17 +08:00
10 lines
196 B
Ruby
10 lines
196 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :repository_status_value do
|
|
created_by { create :user }
|
|
last_modified_by { created_by }
|
|
|
|
repository_status_item
|
|
end
|
|
end
|