summaryrefslogtreecommitdiff
path: root/spec/views/dashboard/projects/_nav.html.haml_spec.rb
blob: cbdd3c0acc351d9ed2a4edda8ba762be82ff75af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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