about summary refs log tree commit diff
path: root/spec/controllers/about_controller_spec.rb
blob: 4fb58637af21d7fdf4ddaae39a76fb6720cf6b14 (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