spec/pilha/stack_overflow/comment_spec.rb in pilha-0.1.5 vs spec/pilha/stack_overflow/comment_spec.rb in pilha-0.1.6
- old
+ new
@@ -1,10 +1,10 @@
require 'spec_helper'
describe StackExchange::StackOverflow::Comment do
it 'should return a comment identified by its id' do
- response = StackOverflow::Comment.find_by_id(1)
+ response = StackOverflow::Comment.find 1
response.total.should == 1
response.page.should == 1
response.pagesize.should == 30
@@ -52,7 +52,58 @@
comment.owner.id.should == 549
comment.owner.user_type.should == "registered"
comment.owner.display_name.should == "Josh Kodroff"
comment.owner.reputation.should == 1542
comment.owner.email_hash.should == "9e7ef08258f04dab37b43842d261aea8"
+ end
+
+ it 'should get comments that contains mention to a user identified by id' do
+ response = StackOverflow::Comment.find_by_mentioned_user_id 549
+ response.total.should == 5
+
+ comment = response.comments.first
+ comment.id.should == 2289139
+ comment.creation_date.should == 1266949196
+ comment.post_id.should == 2320184
+ comment.post_type.should == "answer"
+ comment.score.should be_zero
+ comment.body.should == "@Josh - why not use a pagemethod then? You can just pass back the selected value and then your dependent picklist can use that value to populate itself. Might mean you need to change your approach, but less stuff goes down the wire this way."
+
+
+ comment.owner.id.should == 77814
+ comment.owner.user_type.should == "registered"
+ comment.owner.display_name.should == "nickyt"
+ comment.owner.reputation.should == 1130
+ comment.owner.email_hash.should == "243668a44dc257d64fa88656beb94469"
+
+ comment.mentioned_user.id.should == 549
+ comment.mentioned_user.user_type.should == "registered"
+ comment.mentioned_user.display_name.should == "Josh Kodroff"
+ comment.mentioned_user.reputation.should == 1542
+ comment.mentioned_user.email_hash.should == "9e7ef08258f04dab37b43842d261aea8"
+ end
+
+ it 'should get all comments of a user directed to another user' do
+ response = StackOverflow::Comment.find_by_user_id(77814, :to_user => 549)
+ response.total.should == 1
+
+ comment = response.comments.first
+ comment.id.should == 2289139
+ comment.creation_date.should == 1266949196
+ comment.post_id.should == 2320184
+ comment.post_type.should == "answer"
+ comment.score.should be_zero
+ comment.body.should == "@Josh - why not use a pagemethod then? You can just pass back the selected value and then your dependent picklist can use that value to populate itself. Might mean you need to change your approach, but less stuff goes down the wire this way."
+
+ comment.owner.id.should == 77814
+ comment.owner.user_type.should == "registered"
+ comment.owner.display_name.should == "nickyt"
+ comment.owner.reputation.should == 1130
+ comment.owner.email_hash.should == "243668a44dc257d64fa88656beb94469"
+
+ comment.mentioned_user.id.should == 549
+ comment.mentioned_user.user_type.should == "registered"
+ comment.mentioned_user.display_name.should == "Josh Kodroff"
+ comment.mentioned_user.reputation.should == 1542
+ comment.mentioned_user.email_hash.should == "9e7ef08258f04dab37b43842d261aea8"
end
end