circleci
10 of 10 new or added lines in 2 files covered. (100.0%)
1173 existing lines in 56 files now uncovered.2482 of 2821 relevant lines covered (87.98%)
317.98 hits per line
| 1 |
# frozen_string_literal: true
|
|
|
UNCOV
2
|
class NewProjectWizard::ProjectInformationCategoriesController < RequestWizardsController |
1✔ |
|
UNCOV
3
|
protected |
1✔ |
| 4 |
|
|
|
UNCOV
5
|
def render_current |
1✔ |
|
UNCOV
6
|
@form_url = new_project_project_info_categories_save_path(@request_model) |
1✔ |
|
UNCOV
7
|
render "/new_project_wizard/project_information_categories"
|
1✔ |
|
UNCOV
8
|
end
|
|
| 9 |
|
|
|
UNCOV
10
|
def render_next |
1✔ |
|
UNCOV
11
|
redirect_to new_project_project_info_dates_path(request_model) |
1✔ |
|
UNCOV
12
|
end
|
|
| 13 |
|
|
|
UNCOV
14
|
def render_back |
1✔ |
|
UNCOV
15
|
redirect_to new_project_project_info_path(request_model) |
1✔ |
|
UNCOV
16
|
end
|
|
|
UNCOV
17
|
end
|