Extra list repos test to mimic the conditions of a known issue with one customer

This commit is contained in:
Joseph Schorr 2015-07-16 01:25:19 +03:00
parent c64e490059
commit 5ae8c11638

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):