diff options
author | Joffrey F <joffrey@docker.com> | 2017-01-26 14:07:41 -0800 |
---|---|---|
committer | Joffrey F <joffrey@docker.com> | 2017-01-26 14:07:41 -0800 |
commit | 62c94f9634f8f8cfb5f353aac786cae8278f96fa (patch) | |
tree | 474232ef3629570e6daa6a96b6714186a662544f | |
parent | c031e54117aa158b5468ca264eb790c4baca480f (diff) | |
download | docker-py-remove_obsolete_search_test.tar.gz |
Remove integration test for APIClient.search methodremove_obsolete_search_test
Signed-off-by: Joffrey F <joffrey@docker.com>
-rw-r--r-- | tests/integration/api_client_test.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/integration/api_client_test.py b/tests/integration/api_client_test.py index 8f6a375..02bb435 100644 --- a/tests/integration/api_client_test.py +++ b/tests/integration/api_client_test.py @@ -24,13 +24,6 @@ class InformationTest(BaseAPIIntegrationTest): self.assertIn('Images', res) self.assertIn('Debug', res) - def test_search(self): - res = self.client.search('busybox') - self.assertTrue(len(res) >= 1) - base_img = [x for x in res if x['name'] == 'busybox'] - self.assertEqual(len(base_img), 1) - self.assertIn('description', base_img[0]) - class LinkTest(BaseAPIIntegrationTest): def test_remove_link(self): |