mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-08 22:14:04 +08:00
init project
This commit is contained in:
14
spec/views/courses/edit.html.erb_spec.rb
Normal file
14
spec/views/courses/edit.html.erb_spec.rb
Normal file
@@ -0,0 +1,14 @@
|
||||
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
|
||||
Reference in New Issue
Block a user