about summary refs log tree commit diff
path: root/spec/controllers/about_controller_spec.rb
blob: 54b552b6f54409f62080eb99ebe49fafd4cffaae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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