Update test for bang searches without a query

The new behavior for bang searches is to redirect to the proper result
site, rather than redirecting to the Whoogle home page.
pull/731/head
Ben Busby 2 years ago
parent a9b675cd24
commit b2c524bc3e
No known key found for this signature in database
GPG Key ID: B9B7231E01D924A1

@ -47,10 +47,10 @@ def test_ddg_bang(client):
assert rv._status_code == 302
assert rv.headers.get('Location').startswith('https://github.com')
# Ensure bang without content doesn't redirect to the result
# Ensure bang without a query still redirects to the result
rv = client.get(f'/{Endpoint.search}?q=!gh')
assert rv._status_code == 302
assert not rv.headers.get('Location').startswith('https://github.com')
assert rv.headers.get('Location').startswith('https://github.com')
def test_config(client):

Loading…
Cancel
Save