diff options
| author | marc <a01200356@itesm.mx> | 2016-12-15 00:34:43 -0600 |
|---|---|---|
| committer | marc <a01200356@itesm.mx> | 2016-12-15 00:40:21 -0600 |
| commit | af35eee10b98940c51c6e5e18629de514b4bd48d (patch) | |
| tree | 804b0a4cfe08bb897541e9e8571b921a78e07992 /searx/engines/gigablast.py | |
| parent | e0c270bd72f7b2a40222e3ed264e25d36cb0fc30 (diff) | |
tests for _fetch_supported_languages in engines
and refactor method to make it testable without making requests
Diffstat (limited to 'searx/engines/gigablast.py')
| -rw-r--r-- | searx/engines/gigablast.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/searx/engines/gigablast.py b/searx/engines/gigablast.py index e598e55c4..827b9cd03 100644 --- a/searx/engines/gigablast.py +++ b/searx/engines/gigablast.py @@ -14,7 +14,6 @@ from json import loads from random import randint from time import time from urllib import urlencode -from requests import get from lxml.html import fromstring # engine dependent config @@ -91,10 +90,9 @@ def response(resp): # get supported languages from their site -def fetch_supported_languages(): +def _fetch_supported_languages(resp): supported_languages = [] - response = get(supported_languages_url) - dom = fromstring(response.text) + dom = fromstring(resp.text) links = dom.xpath('//span[@id="menu2"]/a') for link in links: code = link.xpath('./@href')[0][-2:] |