scinote-web/spec/factories/view_states.rb
2019-06-10 12:24:05 +02:00

12 lines
168 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :view_state do
state {}
user
trait :team do
viewable { create :team }
end
end
end