chinwagsocial/spec/controllers/about_controller_spec.rb

16 lines
257 B
Ruby
Raw Permalink Normal View History

2016-09-28 07:12:33 +10:00
require 'rails_helper'
RSpec.describe AboutController, type: :controller do
render_views
2016-09-28 07:12:33 +10:00
describe 'GET #show' do
before do
get :show
end
it 'returns http success' do
expect(response).to have_http_status(200)
2016-09-28 07:12:33 +10:00
end
end
end