mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-10 16:00:33 -07:00
16 lines
326 B
Ruby
16 lines
326 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe "schools/show", type: :view do
|
|
before(:each) do
|
|
@school = assign(:school, School.create!(
|
|
:name => "Name",
|
|
:district_id => 2
|
|
))
|
|
end
|
|
|
|
it "renders attributes in <p>" do
|
|
render
|
|
expect(rendered).to match(/Name/)
|
|
expect(rendered).to match(/2/)
|
|
end
|
|
end
|