This commit is contained in:
Chris Blanchard 2015-08-20 15:58:10 +01:00
parent d3a2b172e5
commit 843da0db43
2 changed files with 6 additions and 0 deletions

View file

@ -1,5 +1,10 @@
FactoryGirl.define do FactoryGirl.define do
factory :topic do factory :topic do
sequence(:title) { |n| "Forum Title #{n}" } sequence(:title) { |n| "Forum Title #{n}" }
forum
user
before(:create) do |topic|
topic.first_post = "My first post on the topic"
end
end end
end end

View file

@ -19,6 +19,7 @@
# time_zone :string(255) # time_zone :string(255)
# version :integer # version :integer
# public_email :boolean default(FALSE), not null # public_email :boolean default(FALSE), not null
# salt :string(255)
# #
require 'spec_helper' require 'spec_helper'