Merge pull request #247 from coreos-inc/extratest

Extra list repos test to mimic the conditions of a known issue with a customer
This commit is contained in:
Jimmy Zelinskie 2015-07-15 18:26:25 -04:00
commit d21251c910

View file

@ -1297,6 +1297,16 @@ class TestListRepos(ApiTestCase):
json = self.getJsonResponse(RepositoryList, params=dict(last_modified=True, popularity=True))
self.assertTrue(len(json['repositories']) > 2)
def test_listrepos_allparams(self):
self.login(ADMIN_ACCESS_USER)
json = self.getJsonResponse(RepositoryList,
params=dict(namespace=ORGANIZATION,
public=False,
last_modified=True))
for repo in json['repositories']:
self.assertEquals(ORGANIZATION, repo['namespace'])
class TestViewPublicRepository(ApiTestCase):
def test_normalview(self):