Skip to content
Snippets Groups Projects
Commit 8ff943c2 authored by Fabian Schneider's avatar Fabian Schneider
Browse files

Add tests for preferences_helper

parent 15da40db
No related branches found
No related tags found
Loading
......@@ -50,10 +50,6 @@ def first_day_of_week_choices
]
end
def default_first_day_of_week
first_day_of_week_choices.rassoc(Gitlab::CurrentSettings.first_day_of_week).first
end
def first_day_of_week_choices_with_default
first_day_of_week_choices.unshift([_('System default (%{default})') % { default: default_first_day_of_week }, nil])
end
......@@ -81,4 +77,8 @@ def validate_dashboard_choices!(user_dashboards)
def excluded_dashboard_choices
['operations']
end
def default_first_day_of_week
first_day_of_week_choices.rassoc(Gitlab::CurrentSettings.first_day_of_week).first
end
end
......@@ -35,6 +35,30 @@
end
end
describe '#first_day_of_week_choices' do
it 'returns Sunday and Monday as choices' do
expect(helper.first_day_of_week_choices).to eq [
['Sunday', 0],
['Monday', 1]
]
end
end
describe '#first_day_of_week_choices_with_default' do
it 'returns choices including system default' do
expect(helper.first_day_of_week_choices_with_default).to eq [
['System default (Sunday)', nil], ['Sunday', 0], ['Monday', 1]
]
end
it 'returns choices including system default set to Monday' do
stub_application_setting(first_day_of_week: 1)
expect(helper.first_day_of_week_choices_with_default).to eq [
['System default (Monday)', nil], ['Sunday', 0], ['Monday', 1]
]
end
end
describe '#user_application_theme' do
context 'with a user' do
it "returns user's theme's css_class" do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment