summaryrefslogtreecommitdiff
path: root/spec/views/dashboard/projects/_nav.html.haml_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/views/dashboard/projects/_nav.html.haml_spec.rb')
-rw-r--r--spec/views/dashboard/projects/_nav.html.haml_spec.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/spec/views/dashboard/projects/_nav.html.haml_spec.rb b/spec/views/dashboard/projects/_nav.html.haml_spec.rb
new file mode 100644
index 00000000000..cbdd3c0acc3
--- /dev/null
+++ b/spec/views/dashboard/projects/_nav.html.haml_spec.rb
@@ -0,0 +1,17 @@
+require 'spec_helper'
+
+describe 'dashboard/projects/_nav.html.haml' do
+ it 'highlights All tab by default' do
+ render
+
+ expect(rendered).to have_css('a.active', text: 'All')
+ end
+
+ it 'highlights Personal tab personal param is present' do
+ controller.params[:personal] = true
+
+ render
+
+ expect(rendered).to have_css('a.active', text: 'Personal')
+ end
+end