This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-09-27 23:12:33 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe AboutController, type: :controller do
|
|
|
|
|
2016-10-03 17:11:54 +02:00
|
|
|
describe 'GET #index' do
|
|
|
|
it 'returns http success' do
|
2016-09-27 23:12:33 +02:00
|
|
|
get :index
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|