Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Home controller tests - test redirect and title #2371

Merged
merged 3 commits into from
Mar 7, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions test/functional/home_controller_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,18 @@ def setup
end

test 'should get home' do
title = I18n.t('home_controller.science_community')

get :home
assert_response :success
assert_select "title", "🎈 Public Lab: #{title}"
end

test 'home should redirect to dashboard if logged in' do
UserSession.create(users(:bob))

get :home
assert_redirected_to dashboard_url
end

test 'should get research if not logged by /dashboard' do
Expand Down