зеркало из https://github.com/docker/docker-py.git
12 строки
363 B
Python
12 строки
363 B
Python
import unittest
|
|
|
|
from .fake_api import FAKE_CONFIG_NAME
|
|
from .fake_api_client import make_fake_client
|
|
|
|
|
|
class CreateConfigsTest(unittest.TestCase):
|
|
def test_create_config(self):
|
|
client = make_fake_client()
|
|
config = client.configs.create(name="super_config", data="config")
|
|
assert config.__repr__() == f"<Config: '{FAKE_CONFIG_NAME}'>"
|