scinote-web/spec/factories/step_comments.rb

10 lines
145 B
Ruby
Raw Normal View History

# frozen_string_literal: true
FactoryBot.define do
factory :step_comment do
user
step
message { Faker::Lorem.sentence }
end
end