Add test for fig rm

This commit is contained in:
Ben Firshman 2014-03-04 10:49:07 +00:00
parent 465c7d569c
commit 044c348faf
1 changed files with 8 additions and 0 deletions

View File

@ -53,6 +53,14 @@ class CLITestCase(DockerClientTestCase):
self.assertNotIn('fig_another_1', output)
self.assertIn('fig_yetanother_1', output)
def test_rm(self):
service = self.command.project.get_service('simple')
service.create_container()
service.kill()
self.assertEqual(len(service.containers(stopped=True)), 1)
self.command.dispatch(['rm', '--force'], None)
self.assertEqual(len(service.containers(stopped=True)), 0)
def test_scale(self):
project = self.command.project