frostfs-sdk-python/tests/client/test_create_container.py
Ilyas Niyazov f8465e5b99 Added create container grpc method
Signed-off-by: Ilyas Niyazov <i.niyazov@yadro.com>
2025-03-10 13:46:17 +03:00

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)