Since the database also contains fixtures from other tests, some counts are dropped and instead tested for inclusion in the results.
9 lines
210 B
Ruby
9 lines
210 B
Ruby
FactoryGirl.define do
|
|
factory :diary_entry do
|
|
sequence(:title) { |n| "Diary entry #{n}" }
|
|
sequence(:body) { |n| "This is diary entry #{n}" }
|
|
|
|
# Fixme requires User Factory
|
|
user_id 1
|
|
end
|
|
end
|