summaryrefslogtreecommitdiff
path: root/spec/controllers/root_controller_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/controllers/root_controller_spec.rb')
-rw-r--r--spec/controllers/root_controller_spec.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/spec/controllers/root_controller_spec.rb b/spec/controllers/root_controller_spec.rb
index 9eefbcb0835..1db99a09404 100644
--- a/spec/controllers/root_controller_spec.rb
+++ b/spec/controllers/root_controller_spec.rb
@@ -122,6 +122,30 @@ RSpec.describe RootController do
expect(response).to render_template 'dashboard/projects/index'
end
+
+ context 'when experiment is enabled' do
+ before do
+ stub_experiment_for_user(customize_homepage: true)
+ end
+
+ it 'renders the default dashboard' do
+ get :index
+
+ expect(assigns[:customize_homepage]).to be true
+ end
+ end
+
+ context 'when experiment not enabled' do
+ before do
+ stub_experiment(customize_homepage: false)
+ end
+
+ it 'renders the default dashboard' do
+ get :index
+
+ expect(assigns[:customize_homepage]).to be false
+ end
+ end
end
end
end