Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben Davila <rdavila84@gmail.com>2017-09-07 17:10:39 +0300
committerRuben Davila <rdavila84@gmail.com>2017-09-07 17:11:52 +0300
commit26264625cbc2692bc113c1e701cb15eecbd010d2 (patch)
tree7833db383c1d1170f7c8a9a4f1131bec0e53943a /spec/helpers/preferences_helper_spec.rb
parent99dcf870dd46299ffec2e5067c9b3223de3315ce (diff)
Small refactor after last code review.
Diffstat (limited to 'spec/helpers/preferences_helper_spec.rb')
-rw-r--r--spec/helpers/preferences_helper_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/helpers/preferences_helper_spec.rb b/spec/helpers/preferences_helper_spec.rb
index 69f0e8e2f9e..8b8080563d3 100644
--- a/spec/helpers/preferences_helper_spec.rb
+++ b/spec/helpers/preferences_helper_spec.rb
@@ -1,7 +1,7 @@
require 'spec_helper'
describe PreferencesHelper do
- describe 'dashboard_choices' do
+ describe '#dashboard_choices' do
it 'raises an exception when defined choices may be missing' do
expect(User).to receive(:dashboards).and_return(foo: 'foo')
expect { helper.dashboard_choices }.to raise_error(RuntimeError)
@@ -26,7 +26,7 @@ describe PreferencesHelper do
end
end
- describe 'user_application_theme' do
+ describe '#user_application_theme' do
context 'with a user' do
it "returns user's theme's css_class" do
stub_user(theme_id: 3)
@@ -52,7 +52,7 @@ describe PreferencesHelper do
end
end
- describe 'user_color_scheme' do
+ describe '#user_color_scheme' do
context 'with a user' do
it "returns user's scheme's css_class" do
allow(helper).to receive(:current_user)