mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 20:00:49 +08:00
11 lines
243 B
Ruby
11 lines
243 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe "Courses", type: :request do
|
|
describe "GET /courses" do
|
|
it "works! (now write some real specs)" do
|
|
get courses_path
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
end
|