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.
15 lines
305 B
15 lines
305 B
6 years ago
|
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
|