コード例 #1
0
ファイル: test_issue.py プロジェクト: ndreynolds/hopper
 def test_comment(self):
     issue = Issue(self.tracker)
     issue.save()
     c = Comment(issue)
     c.save()
     assert type(issue.comment(c.id)) is Comment
     assert issue.comment(c.id).fields == c.fields
コード例 #2
0
ファイル: test_issue.py プロジェクト: ndreynolds/hopper
 def test_comment(self):
     issue = Issue(self.tracker)
     issue.save()
     c = Comment(issue)
     c.save()
     assert type(issue.comment(c.id)) is Comment
     assert issue.comment(c.id).fields == c.fields