From 62c94f9634f8f8cfb5f353aac786cae8278f96fa Mon Sep 17 00:00:00 2001 From: Joffrey F Date: Thu, 26 Jan 2017 14:07:41 -0800 Subject: [PATCH] Remove integration test for APIClient.search method Signed-off-by: Joffrey F --- tests/integration/api_client_test.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/integration/api_client_test.py b/tests/integration/api_client_test.py index 8f6a3757..02bb435a 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):