You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
educoder/spec/views/courses/edit.html.erb_spec.rb

15 lines
305 B

require 'rails_helper'
RSpec.describe "courses/edit", type: :view do
before(:each) do
@course = assign(:course, Course.create!())
end
it "renders the edit course form" do
render
assert_select "form[action=?][method=?]", course_path(@course), "post" do
end
end
end