|
@@ -371,14 +371,17 @@ class CLITestCase(DockerClientTestCase):
|
|
|
wait_on_condition(ContainerCountCondition(self.project, 2))
|
|
|
|
|
|
self.dispatch(['run', 'web', 'true'])
|
|
|
- assert len(self.project.containers(one_off=OneOffFilter.only, stopped=True)) == 1
|
|
|
+ self.dispatch(['run', '-d', 'web', 'tail', '-f', '/dev/null'])
|
|
|
+ assert len(self.project.containers(one_off=OneOffFilter.only, stopped=True)) == 2
|
|
|
|
|
|
result = self.dispatch(['down', '--rmi=local', '--volumes'])
|
|
|
assert 'Stopping v2full_web_1' in result.stderr
|
|
|
assert 'Stopping v2full_other_1' in result.stderr
|
|
|
+ assert 'Stopping v2full_web_run_2' in result.stderr
|
|
|
assert 'Removing v2full_web_1' in result.stderr
|
|
|
assert 'Removing v2full_other_1' in result.stderr
|
|
|
assert 'Removing v2full_web_run_1' in result.stderr
|
|
|
+ assert 'Removing v2full_web_run_2' in result.stderr
|
|
|
assert 'Removing volume v2full_data' in result.stderr
|
|
|
assert 'Removing image v2full_web' in result.stderr
|
|
|
assert 'Removing image busybox' not in result.stderr
|