''' functional tests for ordr2.views.pages ''' from . import testappsetup, testapp # noqa: F401 def test_welcome(testapp): # noqa: F811 result = testapp.get('/') assert result.location == 'http://localhost/login' testapp.login('TerryGilliam', 'Terry') result = testapp.get('/') assert result.location == 'http://localhost/orders' def test_faq(testapp): # noqa: F811 result = testapp.get('/faq') active = result.html.find('li', class_='active') assert active.a['href'] == '/faq'