''' functional tests for ordr2.views.pages ''' from . import testapp def test_welcome(testapp): result = testapp.get('/') assert 'Ordr' in result def test_faq(testapp): result = testapp.get('/faq') assert 'FAQ' in result