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

Remove some redundant tests from Home controller #2435

Merged
merged 1 commit into from
Mar 14, 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
4 changes: 0 additions & 4 deletions test/functional/home_controller_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,11 @@ def setup
test 'should change i18n-locale to English' do
I18n.locale = 'en'
assert_equal 'en', I18n.locale.to_s
assert true
end

test 'should change i18n-locale to Deutsch' do
I18n.locale = 'de'
assert_equal 'de', I18n.locale.to_s
assert true
end

test 'should choose i18n for layout/alerts' do
Expand All @@ -84,7 +82,6 @@ def setup
session[:openid_return_to] = '/home'
get :dashboard
assert_select 'a[href=/openid/resume]', I18n.t('layout._alerts.approve_or_deny') + ' »'
assert true
end
end

Expand All @@ -100,7 +97,6 @@ def setup
get 'home'
assert_template 'home/home'
assert_select 'h2.the-problem', I18n.t('home.home.the_problem.title')
assert true
end
end
end