Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
[noissue]
  • Loading branch information
lubosmj committed Mar 18, 2024
1 parent af4db94 commit b55a506
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions pulp_container/tests/functional/api/test_rbac_repo_content.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,25 @@ def test_content_list(self):
)

self.assertEqual(self.user_reader["tags_api"].list().count, 11)
exp = list(
sorted(
[
"1.0",
"1.0",
"ml_i",
"ml_ii",
"ml_iii",
"ml_iv",
"manifest_a",
"manifest_b",
"manifest_c",
"manifest_d",
"manifest_e",
]
)
)
act = list(sorted([t.name for t in self.user_reader["tags_api"].list().results]))
self.assertEqual(act, exp)
self.assertEqual(
self.user_reader["tags_api"].list(repository_version=push_repository2_rv).count, 1
)
Expand Down

0 comments on commit b55a506

Please sign in to comment.