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.
main
Ben Busby 2022-04-20 14:57:54 -06:00
parent a9b675cd24
commit b2c524bc3e
No known key found for this signature in database
GPG Key ID: B9B7231E01D924A1
1 changed files with 2 additions and 2 deletions

View File

@ -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):