diff options
author | Jhon Honce <jhonce@redhat.com> | 2018-05-16 08:12:36 -0700 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-05-16 18:48:40 +0000 |
commit | 9fed15af938fdd92ee38d398bcd262130d03ed96 (patch) | |
tree | 838daa0ae9e55ea3e476aeb1805291215703cdb5 /test/varlink/test_system.py | |
parent | 7dced311d1119d98dbdd60f6d47fdde5abbff7d7 (diff) | |
download | podman-9fed15af938fdd92ee38d398bcd262130d03ed96.tar.gz podman-9fed15af938fdd92ee38d398bcd262130d03ed96.tar.bz2 podman-9fed15af938fdd92ee38d398bcd262130d03ed96.zip |
Remove old varlink tests
* Replaced by tests in libpod/contrib/python/test
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Closes: #766
Approved by: rhatdan
Diffstat (limited to 'test/varlink/test_system.py')
-rw-r--r-- | test/varlink/test_system.py | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/test/varlink/test_system.py b/test/varlink/test_system.py deleted file mode 100644 index 00848de2b..000000000 --- a/test/varlink/test_system.py +++ /dev/null @@ -1,19 +0,0 @@ -import unittest - -from podman_testcase import PodmanTestCase - - -class TestSystemAPI(PodmanTestCase): - def test_ping(self): - response = self.podman.Ping() - self.assertEqual('OK', response['ping']['message']) - - def test_GetVersion(self): - response = self.podman.GetVersion() - self.assertTrue(set( - ['version', 'go_version', 'built', 'os_arch'] - ).issubset(response['version'].keys())) - - -if __name__ == '__main__': - unittest.main() |