Commit ae39b153 by Rocky Duan

specs for endorsement & passed

parent 7e9265f6
...@@ -196,6 +196,15 @@ describe "app" do ...@@ -196,6 +196,15 @@ describe "app" do
comment.body.should == "new body" comment.body.should == "new body"
comment.title.should == "new title" comment.title.should == "new title"
end end
it "should update endorsement status" do
comment = CommentThread.first.comments.first
put "/api/v1/comments/#{comment.id}", :endorsed => true
comment = CommentThread.first.comments.first
comment.endorsed.should be_true
put "/api/v1/comments/#{comment.id}", :endorsed => false
comment = CommentThread.first.comments.first
comment.endorsed.should be_false
end
it "should not update the super comment" do it "should not update the super comment" do
comment = CommentThread.first.super_comment comment = CommentThread.first.super_comment
put "/api/v1/comments/#{comment.id}", :body => "new body", :title => "new title" put "/api/v1/comments/#{comment.id}", :body => "new body", :title => "new title"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment