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