diff options
author | Jhon Honce <jhonce@redhat.com> | 2018-07-10 12:12:59 -0700 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-07-12 01:38:30 +0000 |
commit | 86154b6538c1fec69fde14f2d4b35c31dcc10b35 (patch) | |
tree | 8c83e9dcd85da19cbf34ed894894a2dc4bdb1c9f /contrib/python/test/test_images.py | |
parent | 7f3f49139694e447a05522efce97d3f8516d0ea2 (diff) | |
download | podman-86154b6538c1fec69fde14f2d4b35c31dcc10b35.tar.gz podman-86154b6538c1fec69fde14f2d4b35c31dcc10b35.tar.bz2 podman-86154b6538c1fec69fde14f2d4b35c31dcc10b35.zip |
Refactor attach()/start() after podman changes
* Update examples
* Update/Clean up unittests
* Add Mixins for container attach()/start()
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Closes: #1080
Approved by: baude
Diffstat (limited to 'contrib/python/test/test_images.py')
-rw-r--r-- | contrib/python/test/test_images.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/python/test/test_images.py b/contrib/python/test/test_images.py index c5695b722..14bf90992 100644 --- a/contrib/python/test/test_images.py +++ b/contrib/python/test/test_images.py @@ -62,6 +62,7 @@ class TestImages(PodmanTestCase): actual = self.alpine_image.container() self.assertIsNotNone(actual) self.assertEqual(actual.status, 'configured') + ctnr = actual.start() self.assertIn(ctnr.status, ['running', 'exited']) |