8 lines
160 B
Ruby
8 lines
160 B
Ruby
FactoryGirl.define do
|
|
factory :note_comment do
|
|
sequence(:body) { |n| "This is note comment #{n}" }
|
|
visible true
|
|
event "opened"
|
|
note
|
|
end
|
|
end
|