mastodon/spec/controllers/about_controller_spec.rb

18 lines
288 B
Ruby

# frozen_string_literal: true
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