mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-13 01:10:39 -07:00
17 lines
394 B
Ruby
17 lines
394 B
Ruby
require 'rails_helper'
|
|
|
|
describe 'home/index.html.erb' do
|
|
subject { Nokogiri::HTML(rendered) }
|
|
|
|
before :each do
|
|
assign :districts, [create(:district), create(:district)]
|
|
# assign :schools, [create(:school), create(:school), create(:school)]
|
|
|
|
render
|
|
end
|
|
|
|
it 'renders a dropdown with districts' do
|
|
expect(subject.css('#district-dropdown option').count).to eq 2
|
|
end
|
|
|
|
end
|