mirror of
https://github.com/status-im/PyGithub.git
synced 2026-09-01 19:31:10 +00:00
CreateRepo
This commit is contained in:
@@ -183,6 +183,14 @@ class IntegrationTest:
|
||||
rf = o.create_fork( r )
|
||||
print r.owner.login + "/" + r.name, "->", rf.owner.login + "/" + rf.name
|
||||
|
||||
def testCreateRepoForOrganization( self ):
|
||||
o = self.g.get_organization( self.cobayeOrganization )
|
||||
r = o.create_repo( "CreatedByPyGithub", has_wiki = False )
|
||||
|
||||
def testCreateRepoForUser( self ):
|
||||
u = self.g.get_user()
|
||||
r = u.create_repo( "CreatedByPyGithub", has_wiki = False )
|
||||
|
||||
def testEditAuthenticatedUser( self ):
|
||||
u = self.g.get_user()
|
||||
originalName = u.name
|
||||
|
||||
Reference in New Issue
Block a user