diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/controllers/about_controller_spec.rb | 12 | ||||
-rw-r--r-- | spec/helpers/about_helper_spec.rb | 5 |
2 files changed, 17 insertions, 0 deletions
diff --git a/spec/controllers/about_controller_spec.rb b/spec/controllers/about_controller_spec.rb new file mode 100644 index 000000000..54b552b6f --- /dev/null +++ b/spec/controllers/about_controller_spec.rb @@ -0,0 +1,12 @@ +require 'rails_helper' + +RSpec.describe AboutController, type: :controller do + + describe "GET #index" do + it "returns http success" do + get :index + expect(response).to have_http_status(:success) + end + end + +end diff --git a/spec/helpers/about_helper_spec.rb b/spec/helpers/about_helper_spec.rb new file mode 100644 index 000000000..6efc9f5bd --- /dev/null +++ b/spec/helpers/about_helper_spec.rb @@ -0,0 +1,5 @@ +require 'rails_helper' + +RSpec.describe AboutHelper, type: :helper do + +end |