mirror of
https://github.com/chenasraf/snpr.git
synced 2026-05-18 01:39:01 +00:00
11 lines
192 B
Ruby
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
|