mirror of https://github.com/docker/docker-py.git
Merge pull request #1419 from docker/remove_obsolete_search_test
Remove integration test for APIClient.search method
This commit is contained in:
commit
2d93674903
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue