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