mastodon/spec/controllers/home_controller_spec.rb

31 lines
568 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
2016-02-22 15:00:20 +00:00
require 'rails_helper'
RSpec.describe HomeController do
render_views
2016-02-24 23:17:01 +00:00
describe 'GET #index' do
subject { get :index }
2017-05-23 21:37:24 +00:00
context 'when not signed in' do
it 'returns http success' do
@request.path = '/'
expect(subject).to have_http_status(:success)
2017-05-23 21:37:24 +00:00
end
end
context 'when signed in' do
let(:user) { Fabricate(:user) }
before do
sign_in(user)
end
2017-05-23 21:37:24 +00:00
it 'returns http success' do
expect(subject).to have_http_status(:success)
2017-05-23 21:37:24 +00:00
end
end
2016-02-24 23:17:01 +00:00
end
2016-02-22 15:00:20 +00:00
end