Take the 2008 Git User's Survey and help out! [ hide ]

public
Fork of insoshi/insoshi
Description: The open source social networking platform in Ruby on Rails from the author of RailsSpace
Homepage: http://insoshi.com
Clone URL: git://github.com/rockastop/insoshi.git
Search Repo:
Added failing test for topic activities
rockastop (author)
Thu May 01 07:26:38 -0700 2008
commit  8e4337caadc4249eab7ee3fe354a2742493c988e
tree    dcbeae4aca341e4c074631aec556698af49c2750
parent  778e15a9d7cc30aa9b60379474dfe5164bfca220
...
18
19
20
 
 
 
 
 
 
21
22
23
...
18
19
20
21
22
23
24
25
26
27
28
29
0
@@ -18,6 +18,12 @@ describe Activity do
0
     destroy_should_remove_activity(@comment)
0
   end
0
   
0
+ it "should delete a topic activity along with its parent item" do
0
+ @topic = Topic.create(:name => "A topic", :forum => forums(:one),
0
+ :person => @person)
0
+ destroy_should_remove_activity(@topic)
0
+ end
0
+
0
   it "should delete an associated connection" do
0
     @person = people(:quentin)
0
     @contact = people(:aaron)

Comments

    No one has commented yet.