mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-26 12:30:48 +00:00
Fix
This commit is contained in:
parent
afa96bd2f5
commit
f20d5294b9
2 changed files with 6 additions and 0 deletions
|
@ -1,5 +1,10 @@
|
|||
FactoryGirl.define do
|
||||
factory :topic do
|
||||
sequence(:title) { |n| "Forum Title #{n}" }
|
||||
forum
|
||||
user
|
||||
before(:create) do |topic|
|
||||
topic.first_post = "My first post on the topic"
|
||||
end
|
||||
end
|
||||
end
|
|
@ -19,6 +19,7 @@
|
|||
# time_zone :string(255)
|
||||
# version :integer
|
||||
# public_email :boolean default(FALSE), not null
|
||||
# salt :string(255)
|
||||
#
|
||||
|
||||
require 'spec_helper'
|
||||
|
|
Loading…
Reference in a new issue