summaryrefslogtreecommitdiff
path: root/tests/unit/engines/test_yahoo.py
diff options
context:
space:
mode:
authorNoémi Ványi <sitbackandwait@gmail.com>2016-12-11 16:41:14 +0100
committerNoémi Ványi <sitbackandwait@gmail.com>2016-12-11 16:58:31 +0100
commitb034356825420507c9fb7ee2dc100676a88cf6c7 (patch)
tree82f90b1e406ffda0276d2918b1b86c3589e50012 /tests/unit/engines/test_yahoo.py
parentc59c76e6ee14f0417ad55ecf0f888f62f34f1f6d (diff)
downloadsearxng-b034356825420507c9fb7ee2dc100676a88cf6c7.tar.gz
searxng-b034356825420507c9fb7ee2dc100676a88cf6c7.zip
add year filter to engines with time range support && tests
Following engines does not support "Last year": * Bing News * DeviantArt * DuckDuckGo * Yahoo * YouTube (noapi)
Diffstat (limited to 'tests/unit/engines/test_yahoo.py')
-rw-r--r--tests/unit/engines/test_yahoo.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/unit/engines/test_yahoo.py b/tests/unit/engines/test_yahoo.py
index 1226f92ab..303295e2f 100644
--- a/tests/unit/engines/test_yahoo.py
+++ b/tests/unit/engines/test_yahoo.py
@@ -46,6 +46,13 @@ class TestYahooEngine(SearxTestCase):
self.assertIn('en', params['cookies']['sB'])
self.assertIn('en', params['url'])
+ def test_no_url_in_request_year_time_range(self):
+ dicto = defaultdict(dict)
+ query = 'test_query'
+ dicto['time_range'] = 'year'
+ params = yahoo.request(query, dicto)
+ self.assertEqual({}, params['url'])
+
def test_response(self):
self.assertRaises(AttributeError, yahoo.response, None)
self.assertRaises(AttributeError, yahoo.response, [])