diff --git a/test/specs.py b/test/specs.py index b1f71575c..f69666128 100644 --- a/test/specs.py +++ b/test/specs.py @@ -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'), - ] \ No newline at end of file + ]