mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 07:28:41 -07:00
20 lines
413 B
Ruby
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
|