MCPcopy Index your code
hub / github.com/PyGithub/PyGithub / setUp

Method setUp

tests/SubIssueSummary.py:31–36  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

29
30class SubIssueSummary(Framework.TestCase):
31 def setUp(self):
32 super().setUp()
33 with self.replayData("Issue.setUp.txt"):
34 self.repo = self.g.get_repo("PyGithub/PyGithub")
35 self.issue = self.repo.get_issue(28)
36 self.sis = self.issue.sub_issues_summary
37
38 def testAttributes(self):
39 self.assertEqual(self.sis.completed, 1)

Callers

nothing calls this directly

Calls 3

replayDataMethod · 0.80
get_repoMethod · 0.45
get_issueMethod · 0.45

Tested by

no test coverage detected