Merge branch 'lumberjack' of ssh://bitbucket.org/yackob03/quay into lumberjack

This commit is contained in:
yackob03 2013-12-02 15:40:14 -05:00
commit 2da0d4ad75

View file

@ -411,6 +411,12 @@ def build_specs():
TestSpec(url_for('get_subscription'), 401, 200, 200, 200),
TestSpec(url_for('get_org_subscription', orgname=ORG)),
TestSpec(url_for('repo_logs_api', repository=PUBLIC_REPO), 401, 403, 403, 403),
TestSpec(url_for('repo_logs_api', repository=ORG_REPO), 401, 403, 403, 200),
TestSpec(url_for('repo_logs_api', repository=PRIVATE_REPO), 401, 403, 403, 200),
TestSpec(url_for('org_logs_api', orgname=ORG), 401, 403, 403, 200),
]
@ -570,4 +576,4 @@ def build_index_specs():
NO_REPO, 403, 403, 403, 204).set_method('DELETE'),
IndexTestSpec(url_for('delete_repository_tags', repository=ORG_REPO),
NO_REPO, 403, 403, 403, 204).set_method('DELETE'),
]
]