summaryrefslogtreecommitdiff
path: root/tests/unit/engines/test_google_images.py
diff options
context:
space:
mode:
authorMathieu Brunot <mathieu.brunot@monogramm.io>2019-12-24 21:38:07 +0100
committerGitHub <noreply@github.com>2019-12-24 21:38:07 +0100
commit359c18f9e633fe4cf1062bb2e7507840065e6ca5 (patch)
treea0babfcc9471b69a20358fa95f47e22b469af7f0 /tests/unit/engines/test_google_images.py
parent088752959e5cb635b55cb74e8d9d90e5062e0a7f (diff)
parenta52a638ba88466c587fd8afa744434711b1e4822 (diff)
Merge branch 'master' into docker/opencontainers
Diffstat (limited to 'tests/unit/engines/test_google_images.py')
-rw-r--r--tests/unit/engines/test_google_images.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/unit/engines/test_google_images.py b/tests/unit/engines/test_google_images.py
deleted file mode 100644
index 8366e1b08..000000000
--- a/tests/unit/engines/test_google_images.py
+++ /dev/null
@@ -1,27 +0,0 @@
-from collections import defaultdict
-import mock
-from searx.engines import google_images
-from searx.testing import SearxTestCase
-
-
-class TestGoogleImagesEngine(SearxTestCase):
-
- def test_request(self):
- query = 'test_query'
- dicto = defaultdict(dict)
- dicto['pageno'] = 1
- dicto['safesearch'] = 1
- dicto['time_range'] = ''
- params = google_images.request(query, dicto)
- self.assertIn('url', params)
- self.assertIn(query, params['url'])
-
- dicto['safesearch'] = 0
- params = google_images.request(query, dicto)
- self.assertNotIn('safe', params['url'])
-
- def test_response(self):
- self.assertRaises(AttributeError, google_images.response, None)
- self.assertRaises(AttributeError, google_images.response, [])
- self.assertRaises(AttributeError, google_images.response, '')
- self.assertRaises(AttributeError, google_images.response, '[]')