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

20 lines
413 B
Ruby

require 'rails_helper'
RSpec.describe "schools/edit", type: :view do
before(:each) do
@school = assign(:school, School.create!(
:name => "MyString",
:district_id => 1
))
end
it "renders the edit school form" do
render
assert_select "form[action=?][method=?]", school_path(@school), "post" do
assert_select "input#school_name[name=?]", "school[name]"
end
end
end