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:
authorChristian Höltje <docwhat@gerf.org>2013-06-03 19:31:35 +0400
committerChristian Höltje <docwhat@gerf.org>2013-06-03 19:39:46 +0400
commit336750c916498e99505f593067d4eeadccb3c261 (patch)
tree43d6125b1d1efe1326ab9be8de4aafe8ea28df78 /spec/helpers/application_helper_spec.rb
parent0447c731ba392641145ac53cb8c50fab5392cda7 (diff)
user_color_scheme_class with current_user
This refactors the `user_color_scheme_class` to use a hash with a default. This prevents problems with workers that don't have access to the current_user. Fixes issue #2758
Diffstat (limited to 'spec/helpers/application_helper_spec.rb')
-rw-r--r--spec/helpers/application_helper_spec.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/spec/helpers/application_helper_spec.rb b/spec/helpers/application_helper_spec.rb
index ba1af08421b..229f49659cf 100644
--- a/spec/helpers/application_helper_spec.rb
+++ b/spec/helpers/application_helper_spec.rb
@@ -83,4 +83,26 @@ describe ApplicationHelper do
end
end
+
+ describe "user_color_scheme_class" do
+ context "with current_user is nil" do
+ it "should return a string" do
+ stub!(:current_user).and_return(nil)
+ user_color_scheme_class.should be_kind_of(String)
+ end
+ end
+
+ context "with a current_user" do
+ (1..5).each do |color_scheme_id|
+ context "with color_scheme_id == #{color_scheme_id}" do
+ it "should return a string" do
+ current_user = double(:color_scheme_id => color_scheme_id)
+ stub!(:current_user).and_return(current_user)
+ user_color_scheme_class.should be_kind_of(String)
+ end
+ end
+ end
+ end
+ end
+
end