From 4a59cae96cb3de84517dc13c5c2ab751a91cab36 Mon Sep 17 00:00:00 2001 From: Pete Herlihy Date: Thu, 23 Mar 2017 15:03:24 +0000 Subject: [PATCH] Added a route to the new Roadmap page --- app/main/views/index.py | 5 +++++ tests/app/main/views/test_index.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/app/main/views/index.py b/app/main/views/index.py index bd70df9e6..b0def9efa 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -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') diff --git a/tests/app/main/views/test_index.py b/tests/app/main/views/test_index.py index 07b6fd2d2..31315e836 100644 --- a/tests/app/main/views/test_index.py +++ b/tests/app/main/views/test_index.py @@ -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,