2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-27 23:12:33 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-05-04 05:49:53 +02:00
|
|
|
RSpec.describe AboutController do
|
2016-11-18 23:08:52 +01:00
|
|
|
render_views
|
2016-09-27 23:12:33 +02:00
|
|
|
|
2022-10-13 14:42:37 +02:00
|
|
|
describe 'GET #show' do
|
2017-05-22 16:27:19 +02:00
|
|
|
before do
|
2022-10-13 14:42:37 +02:00
|
|
|
get :show
|
2017-05-22 16:27:19 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2016-09-27 23:12:33 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|