예제 #1
0
 def test_refresh__with_reply_sort_and_limit(self):
     with self.use_cassette():
         comment = Comment(self.reddit, "e4j4830")
         comment.reply_limit = 4
         comment.reply_sort = "new"
         comment.refresh()
         replies = comment.replies
     last_created = float("inf")
     for reply in replies:
         if isinstance(reply, Comment):
             if reply.created_utc > last_created:
                 assert False, "sort order incorrect"
             last_created = reply.created_utc
     assert len(comment.replies) == 3
예제 #2
0
 def test_refresh__with_reply_sort_and_limit(self):
     with self.recorder.use_cassette(
             'TestComment.test_refresh__with_reply_sort_and_limit'):
         comment = Comment(self.reddit, 'e4j4830')
         comment.reply_limit = 4
         comment.reply_sort = 'new'
         comment.refresh()
         replies = comment.replies
     last_created = float('inf')
     for reply in replies:
         if isinstance(reply, Comment):
             if (reply.created_utc > last_created):
                 assert False, 'sort order incorrect'
             last_created = reply.created_utc
     assert len(comment.replies) == 3
예제 #3
0
 def test_refresh__with_reply_sort_and_limit(self):
     with self.recorder.use_cassette(
         "TestComment.test_refresh__with_reply_sort_and_limit"
     ):
         comment = Comment(self.reddit, "e4j4830")
         comment.reply_limit = 4
         comment.reply_sort = "new"
         comment.refresh()
         replies = comment.replies
     last_created = float("inf")
     for reply in replies:
         if isinstance(reply, Comment):
             if reply.created_utc > last_created:
                 assert False, "sort order incorrect"
             last_created = reply.created_utc
     assert len(comment.replies) == 3