You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
350 B
10 lines
350 B
''' functional tests for ordr accounts ''' |
|
|
|
from .. import testappsetup, testapp, get_token_url # noqa: F401 |
|
|
|
|
|
def test_account_root(testapp): # noqa: F811 |
|
''' check the redirect if '/account' is requested ''' |
|
testapp.login('TerryGilliam', 'Terry') |
|
response = testapp.get('/account') |
|
assert response.location == 'http://localhost/'
|
|
|