Skip to content
Snippets Groups Projects

Rename Stocks data registration to LabID data registration.

Merged William Murphy requested to merge #15-rename-stocks-data-registration into master
3 files
+ 7
13
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 1
2
@@ -263,12 +263,11 @@ def test_pullover(auth_test_client, collection_id, comment, name):
assert isinstance(resp, models.Data)
assert resp is not None
@pytest.mark.skip(reason="Test not possible as volume endpoint hidden from OpenAPI spec")
def test_list_volumes(auth_test_client):
"""
Test the volume list endpoint.
"""
volumes = auth_test_client.list_data()
volumes = auth_test_client.list_volumes()
assert len(volumes) > 0
assert isinstance(volumes, list)
assert all((isinstance(v, models.Volume) for v in volumes))
\ No newline at end of file
Loading