mirror of https://github.com/docker/docker-py.git
23 lines
533 B
Python
23 lines
533 B
Python
import unittest
|
|
|
|
import docker
|
|
|
|
from .base import TEST_API_VERSION
|
|
|
|
|
|
class ClientTest(unittest.TestCase):
|
|
|
|
def test_info(self):
|
|
client = docker.from_env(version=TEST_API_VERSION)
|
|
info = client.info()
|
|
assert 'ID' in info
|
|
assert 'Name' in info
|
|
|
|
def test_ping(self):
|
|
client = docker.from_env(version=TEST_API_VERSION)
|
|
assert client.ping() is True
|
|
|
|
def test_version(self):
|
|
client = docker.from_env(version=TEST_API_VERSION)
|
|
assert 'Version' in client.version()
|