scinote-web/spec/factories/view_states.rb

12 lines
168 B
Ruby
Raw Normal View History

# frozen_string_literal: true
FactoryBot.define do
factory :view_state do
state {}
user
2019-06-10 18:19:10 +08:00
trait :team do
viewable { create :team }
end
end
end