예제 #1
0
 def test_get_comments(self):
     self.new_comment.save_comment()
     got_comments = Pitch.get_comments(2)
     self.assertTrue(len(got_comments) > 1)
예제 #2
0
 def test_get_pitch_comments(self):
     self.new_pitch.save_pitch()
     got_pitch_comments = Pitch.get_comments()
     self.assertTrue(len(got_pitch_comments) >= 0)