circleci
1 of 3 new or added lines in 1 file covered. (33.33%)
724 existing lines in 41 files now uncovered.2913 of 3188 relevant lines covered (91.37%)
563.89 hits per line
| 1 |
# frozen_string_literal: true
|
|
|
UNCOV
2
|
class NewProjectWizard::ProjectInformationCategoriesController < RequestWizardsController |
3✔ |
|
UNCOV
3
|
protected |
3✔ |
| 4 |
|
|
|
UNCOV
5
|
def render_current |
3✔ |
|
UNCOV
6
|
add_breadcrumb("New Project Request")
|
1✔ |
|
UNCOV
7
|
@request_presenter = RequestPresenter.new(@request_model) |
1✔ |
|
UNCOV
8
|
@form_url = new_project_project_info_categories_save_path(@request_model) |
1✔ |
|
UNCOV
9
|
render "/new_project_wizard/project_information_categories"
|
1✔ |
|
UNCOV
10
|
end
|
|
| 11 |
|
|
|
UNCOV
12
|
def render_next |
3✔ |
|
UNCOV
13
|
redirect_to new_project_project_info_dates_path(request_model) |
1✔ |
|
UNCOV
14
|
end
|
|
| 15 |
|
|
|
UNCOV
16
|
def render_back |
3✔ |
|
UNCOV
17
|
redirect_to new_project_project_info_path(request_model) |
1✔ |
|
UNCOV
18
|
end
|
|
|
UNCOV
19
|
end
|