diff --git a/app/controllers/reports_controller.rb b/app/controllers/reports_controller.rb new file mode 100644 index 0000000..43b8fe3 --- /dev/null +++ b/app/controllers/reports_controller.rb @@ -0,0 +1,4 @@ +class ReportsController < ApplicationController + def index + end +end diff --git a/app/helpers/reports_helper.rb b/app/helpers/reports_helper.rb new file mode 100644 index 0000000..cae2f09 --- /dev/null +++ b/app/helpers/reports_helper.rb @@ -0,0 +1,2 @@ +module ReportsHelper +end diff --git a/app/views/reports/index.html.erb b/app/views/reports/index.html.erb new file mode 100644 index 0000000..6f53cd6 --- /dev/null +++ b/app/views/reports/index.html.erb @@ -0,0 +1,2 @@ +

Reports#index

+

Find me in app/views/reports/index.html.erb

diff --git a/test/controllers/reports_controller_test.rb b/test/controllers/reports_controller_test.rb new file mode 100644 index 0000000..d2f3da5 --- /dev/null +++ b/test/controllers/reports_controller_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class ReportsControllerTest < ActionDispatch::IntegrationTest + # test "the truth" do + # assert true + # end +end