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,