diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2019-12-21 21:15:09 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2019-12-21 21:15:09 +0100 |
| commit | 52ccaa7acc0eeeb452938a2a8758906430ece077 (patch) | |
| tree | 6ba46008c9a88e3dfca224dec89fb6797fbfb733 /tests/unit/engines/test_google_images.py | |
| parent | fc457569f757dd10ff55393f472ea9ed49a42374 (diff) | |
[mod] remove useless engine unit tests
These tests are not able to detect engine errors if the upstream
site changes.
Diffstat (limited to 'tests/unit/engines/test_google_images.py')
| -rw-r--r-- | tests/unit/engines/test_google_images.py | 27 |
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, '[]') |