mirror of https://github.com/docker/compose.git
Adding tests Signed-off-by: John Harris <john@johnharris.io>
This commit is contained in:
parent
e4d2d7ed8a
commit
f7cd94d4a9
|
@ -1360,6 +1360,17 @@ class ConfigTest(unittest.TestCase):
|
|||
config.load(config_details)
|
||||
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):
|
||||
config_details = build_config_details({
|
||||
'version': '2',
|
||||
|
|
Loading…
Reference in New Issue