push
circleci
2 of 18 new or added lines in 2 files covered. (11.11%)
183 existing lines in 22 files now uncovered.2747 of 3012 relevant lines covered (91.2%)
749.07 hits per line
| 1 |
# frozen_string_literal: true
|
|
|
UNCOV
2
|
class RequestSubmitController < ApplicationController |
3✔ |
|
UNCOV
3
|
before_action :set_breadcrumbs
|
3✔ |
| 4 |
|
|
| 5 |
# GET /request_submit
|
|
|
UNCOV
6
|
def index; end |
3✔ |
| 7 |
|
|
|
UNCOV
8
|
private |
3✔ |
| 9 |
|
|
|
UNCOV
10
|
def set_breadcrumbs |
3✔ |
| 11 |
add_breadcrumb("Dashboard", dashboard_path)
|
10✔ |
| 12 |
add_breadcrumb("New Project Request")
|
10✔ |
|
UNCOV
13
|
end
|
|
|
UNCOV
14
|
end
|