Test listing sub-issues of an issue.
(self)
| 32 | self.issue = self.repo.get_issue(5) |
| 33 | |
| 34 | def testListSubIssues(self): |
| 35 | """ |
| 36 | Test listing sub-issues of an issue. |
| 37 | """ |
| 38 | self.assertListKeyEqual(self.issue.get_sub_issues(), lambda s: s.number, [34, 35]) |
| 39 | |
| 40 | def testAddSubIssue(self): |
| 41 | """ |
nothing calls this directly
no test coverage detected