You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sqm-dashboards/spec/features/school_dashboard_feature_sp...

33 lines
1.0 KiB

require "rails_helper"
feature "School dashboard", type: feature do
let(:district) { District.create name: 'Winchester' }
let(:school) {
School.create name: 'Winchester High School', slug: 'winchester-high-school', district: district
}
let(:construct_row_bars) { page.all('rect.construct-row-bar') }
scenario "User authentication fails" do
page.driver.browser.basic_authorize('wrong username', 'wrong password')
visit "/districts/winchester/schools/#{school.slug}/dashboard?year=2020-21"
expect(page).not_to have_text(school.name)
end
scenario "User views a school dashboard" do
page.driver.browser.basic_authorize(username, password)
visit "/districts/winchester/schools/#{school.slug}/dashboard?year=2020-21"
expect(page).to have_text(school.name)
expect(page).to have_text('Professional Qualifications')
first_row_bar = construct_row_bars.first
expect(first_row_bar['width']).to eq '283'
end
let(:username) { 'winchester' }
let(:password) { 'winchester!' }
end