mastodon/spec/controllers/home_controller_spec.rb

13 lines
240 B
Ruby
Raw Normal View History

2016-02-22 15:00:20 +00:00
require 'rails_helper'
RSpec.describe HomeController, type: :controller do
render_views
2016-02-24 23:17:01 +00:00
describe 'GET #index' do
2016-09-27 21:23:23 +00:00
it 'redirects to about page' do
get :index
2016-09-27 21:23:23 +00:00
expect(response).to redirect_to(about_path)
end
2016-02-24 23:17:01 +00:00
end
2016-02-22 15:00:20 +00:00
end