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