projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge remote-tracking branch 'openstreetmap/pull/1312'
[rails.git]
/
test
/
factories
/
diary_comments.rb
1
FactoryGirl.define do
2
factory :diary_comment do
3
sequence(:body) { |n| "This is diary comment #{n}" }
4
5
diary_entry
6
7
# Fixme requires User Factory
8
user_id 1
9
end
10
end