0ce6785851
Replaces all the explicit include metadata syntax in the specs (tag: true) into the implicit one (:tag). Added a cop to prevent future errors and handle autocorrection.
38 lines
819 B
Ruby
38 lines
819 B
Ruby
require 'spec_helper'
|
|
|
|
RSpec.describe 'Dashboard Active Tab', :js do
|
|
before do
|
|
sign_in(create(:user))
|
|
end
|
|
|
|
shared_examples 'page has active tab' do |title|
|
|
it "#{title} tab" do
|
|
expect(page).to have_selector('.navbar-sub-nav li.active', count: 1)
|
|
expect(find('.navbar-sub-nav li.active')).to have_content(title)
|
|
end
|
|
end
|
|
|
|
context 'on dashboard projects' do
|
|
before do
|
|
visit dashboard_projects_path
|
|
end
|
|
|
|
it_behaves_like 'page has active tab', 'Projects'
|
|
end
|
|
|
|
context 'on dashboard groups' do
|
|
before do
|
|
visit dashboard_groups_path
|
|
end
|
|
|
|
it_behaves_like 'page has active tab', 'Groups'
|
|
end
|
|
|
|
context 'on activity projects' do
|
|
before do
|
|
visit activity_dashboard_path
|
|
end
|
|
|
|
it_behaves_like 'page has active tab', 'Activity'
|
|
end
|
|
end
|