sqm-dashboards/spec/views/schools/show.html.erb_spec.rb
2017-03-01 13:23:54 -05:00

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