added forum topic/post

This commit is contained in:
albert
2010-02-20 20:25:01 -05:00
parent 0bb52fd63a
commit 9f05154a5a
11 changed files with 271 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
require File.dirname(__FILE__) + '/../test_helper'
class ForumPostTest < ActiveSupport::TestCase
context "A forum post" do
should "update its parent when saved" do
topic = Factory.create(:forum_topic)
sleep 2
post = Factory.create(:forum_post, :topic_id => topic.id)
topic.reload
assert(topic.updated_at > 1.second.ago)
end
end
end

View File

@@ -0,0 +1,4 @@
require File.dirname(__FILE__) + '/../test_helper'
class ForumTopicTest < ActiveSupport::TestCase
end