mirror of https://github.com/docker/docs.git
Adding tests
Signed-off-by: John Harris <john@johnharris.io>
This commit is contained in:
parent
68272b0216
commit
377be5aa1f
|
@ -1360,6 +1360,17 @@ class ConfigTest(unittest.TestCase):
|
||||||
config.load(config_details)
|
config.load(config_details)
|
||||||
assert "Service 'one' depends on service 'three'" in exc.exconly()
|
assert "Service 'one' depends on service 'three'" in exc.exconly()
|
||||||
|
|
||||||
|
def test_linked_service_is_undefined(self):
|
||||||
|
with self.assertRaises(ConfigurationError):
|
||||||
|
config.load(
|
||||||
|
build_config_details({
|
||||||
|
'version': '2',
|
||||||
|
'services': {
|
||||||
|
'web': {'image': 'busybox', 'links': ['db']},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
)
|
||||||
|
|
||||||
def test_load_dockerfile_without_context(self):
|
def test_load_dockerfile_without_context(self):
|
||||||
config_details = build_config_details({
|
config_details = build_config_details({
|
||||||
'version': '2',
|
'version': '2',
|
||||||
|
|
Loading…
Reference in New Issue