debian-mirror-gitlab/spec/views/dashboard/projects/_nav.html.haml_spec.rb
2019-12-21 20:55:43 +05:30

20 lines
405 B
Ruby

# frozen_string_literal: true
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