14 lines
605 B
Python
14 lines
605 B
Python
# import pytest
|
|
|
|
# from frostfs_sdk.client.frostfs_client import FrostfsClient
|
|
# from frostfs_sdk.client.parameters.container_create import PrmContainerCreate
|
|
# from frostfs_sdk.models.dto.container import ContainerId
|
|
# from tests.helpers.models import Helpers
|
|
|
|
|
|
# @pytest.mark.container
|
|
# class TestContainer:
|
|
# def test_create_container(self, default_frostfs_client: FrostfsClient, helpers: Helpers):
|
|
# req_body: PrmContainerCreate = helpers.container.create_params_container_create()
|
|
# cid: ContainerId = default_frostfs_client.container.create(req_body)
|
|
# print(cid.value)
|