Switch from minitest to rspec

This commit is contained in:
2025-10-07 22:18:22 -07:00
parent 16f851b721
commit 36d462dcbc
16 changed files with 218 additions and 31 deletions

View File

@@ -0,0 +1,10 @@
require 'rails_helper'
RSpec.describe "Api::V1::Parks", type: :request do
describe "GET /index" do
it "returns http success" do
get "/api/v1/parks/index"
expect(response).to have_http_status(:success)
end
end
end