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

Method setUp

tests/Team.py:65–68  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

63
64class Team(Framework.TestCase):
65 def setUp(self):
66 super().setUp()
67 self.org = self.g.get_organization("BeaverSoftware")
68 self.team = self.org.get_team(12345678)
69
70 def testAttributes(self):
71 self.assertEqual(self.team.created_at, datetime(2024, 6, 18, 10, 27, 23, tzinfo=timezone.utc))

Callers

nothing calls this directly

Calls 2

get_organizationMethod · 0.80
get_teamMethod · 0.80

Tested by

no test coverage detected