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

Method testIssue2030CreateProject

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

Source from the content-addressed store, hash-verified

26
27class Organization(Framework.TestCase):
28 def testIssue2030CreateProject(self):
29 super().setUp()
30 project = "ultratendency"
31 self.user = self.g.get_user("karthik-kadajji-t")
32 self.org = self.g.get_organization("testkarthik")
33 self.org.create_project(project)
34 project = self.org.get_projects()[0].name
35
36 self.assertEqual("ultratendency", project)

Callers

nothing calls this directly

Calls 5

get_userMethod · 0.80
get_organizationMethod · 0.80
setUpMethod · 0.45
create_projectMethod · 0.45
get_projectsMethod · 0.45

Tested by

no test coverage detected