diff --git a/app/controllers/tutorials_controller.rb b/app/controllers/tutorials_controller.rb new file mode 100644 index 0000000..4e75115 --- /dev/null +++ b/app/controllers/tutorials_controller.rb @@ -0,0 +1,2 @@ +class TutorialsController < ApplicationController +end diff --git a/app/helpers/tutorials_helper.rb b/app/helpers/tutorials_helper.rb new file mode 100644 index 0000000..30716fd --- /dev/null +++ b/app/helpers/tutorials_helper.rb @@ -0,0 +1,2 @@ +module TutorialsHelper +end diff --git a/app/views/layouts/tutorial/_sidebar.html.erb b/app/views/layouts/tutorial/_sidebar.html.erb index 0829777..04bb2fc 100644 --- a/app/views/layouts/tutorial/_sidebar.html.erb +++ b/app/views/layouts/tutorial/_sidebar.html.erb @@ -83,29 +83,19 @@ diff --git a/test/functional/tutorials_controller_test.rb b/test/functional/tutorials_controller_test.rb new file mode 100644 index 0000000..c3cc720 --- /dev/null +++ b/test/functional/tutorials_controller_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class TutorialsControllerTest < ActionController::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/unit/helpers/tutorials_helper_test.rb b/test/unit/helpers/tutorials_helper_test.rb new file mode 100644 index 0000000..dae016c --- /dev/null +++ b/test/unit/helpers/tutorials_helper_test.rb @@ -0,0 +1,4 @@ +require 'test_helper' + +class TutorialsHelperTest < ActionView::TestCase +end