mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-12 14:03:16 -08:00
15 lines
257 B
Ruby
15 lines
257 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe AboutController, type: :controller do
|
|
render_views
|
|
|
|
describe 'GET #show' do
|
|
before do
|
|
get :show
|
|
end
|
|
|
|
it 'returns http success' do
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
end
|