chinwagsocial/spec/controllers/home_controller_spec.rb

40 lines
1 KiB
Ruby
Raw Normal View History

2016-02-23 02:00:20 +11:00
require 'rails_helper'
RSpec.describe HomeController, type: :controller do
render_views
2016-02-25 10:17:01 +11:00
describe 'GET #index' do
2017-05-24 07:37:24 +10:00
context 'when not signed in' do
it 'redirects to about page' do
@request.path = '/'
2017-05-24 07:37:24 +10:00
get :index
expect(response).to redirect_to(about_path)
end
end
context 'when signed in' do
let(:user) { Fabricate(:user) }
2017-05-24 07:37:24 +10:00
subject do
sign_in(user)
get :index
end
it 'assigns @body_classes' do
subject
expect(assigns(:body_classes)).to eq 'app-body'
end
it 'assigns @initial_state_json' do
2017-05-24 07:37:24 +10:00
subject
initial_state_json = json_str_to_hash(assigns(:initial_state_json))
expect(initial_state_json[:meta]).to_not be_nil
expect(initial_state_json[:compose]).to_not be_nil
expect(initial_state_json[:accounts]).to_not be_nil
expect(initial_state_json[:settings]).to_not be_nil
expect(initial_state_json[:media_attachments]).to_not be_nil
2017-05-24 07:37:24 +10:00
end
end
2016-02-25 10:17:01 +11:00
end
2016-02-23 02:00:20 +11:00
end