mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 20:00:49 +08:00
15 lines
305 B
Ruby
15 lines
305 B
Ruby
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
|