mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 03:40:49 +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
|
||||
14
spec/views/courses/index.html.erb_spec.rb
Normal file
14
spec/views/courses/index.html.erb_spec.rb
Normal file
@@ -0,0 +1,14 @@
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe "courses/index", type: :view do
|
||||
before(:each) do
|
||||
assign(:courses, [
|
||||
Course.create!(),
|
||||
Course.create!()
|
||||
])
|
||||
end
|
||||
|
||||
it "renders a list of courses" do
|
||||
render
|
||||
end
|
||||
end
|
||||
14
spec/views/courses/new.html.erb_spec.rb
Normal file
14
spec/views/courses/new.html.erb_spec.rb
Normal file
@@ -0,0 +1,14 @@
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe "courses/new", type: :view do
|
||||
before(:each) do
|
||||
assign(:course, Course.new())
|
||||
end
|
||||
|
||||
it "renders new course form" do
|
||||
render
|
||||
|
||||
assert_select "form[action=?][method=?]", courses_path, "post" do
|
||||
end
|
||||
end
|
||||
end
|
||||
11
spec/views/courses/show.html.erb_spec.rb
Normal file
11
spec/views/courses/show.html.erb_spec.rb
Normal file
@@ -0,0 +1,11 @@
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe "courses/show", type: :view do
|
||||
before(:each) do
|
||||
@course = assign(:course, Course.create!())
|
||||
end
|
||||
|
||||
it "renders attributes in <p>" do
|
||||
render
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user