Files
snpr/spec/factories/snp_comments.rb
2020-04-19 12:49:08 +02:00

11 lines
192 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :snp_comment do
comment_text { 'This is a great SNP!' }
subject { 'Great!' }
user_id { 1 }
snp_id { 1 }
end
end