mastodon/spec/controllers/about_controller_spec.rb

18 lines
269 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
2016-09-27 23:12:33 +02:00
require 'rails_helper'
RSpec.describe AboutController do
render_views
2016-09-27 23:12:33 +02:00
describe 'GET #show' do
before do
get :show
end
it 'returns http success' do
expect(response).to have_http_status(200)
2016-09-27 23:12:33 +02:00
end
end
end