Added a route to the new Roadmap page

This commit is contained in:
Pete Herlihy
2017-03-23 15:03:24 +00:00
committed by Chris Hill-Scott
parent 8b3f299f91
commit 4a59cae96c
2 changed files with 6 additions and 1 deletions

View File

@@ -105,3 +105,8 @@ def documentation():
@main.route('/integration_testing')
def integration_testing():
return render_template('views/integration_testing.html')
@main.route('/roadmap')
def roadmap():
return render_template('views/roadmap.html')

View File

@@ -17,7 +17,7 @@ def test_logged_in_user_redirects_to_choose_service(
@pytest.mark.parametrize('view', [
'cookies', 'trial_mode', 'pricing', 'terms', 'delivery_and_failure', 'integration_testing'
'cookies', 'trial_mode', 'pricing', 'terms', 'delivery_and_failure', 'integration_testing', 'roadmap'
])
def test_static_pages(
client,