dawarich/spec/requests/stats_spec.rb
2024-03-23 20:29:55 +01:00

11 lines
216 B
Ruby

require 'rails_helper'
RSpec.describe "/stats", type: :request do
describe "GET /index" do
it "renders a successful response" do
get stats_url
expect(response.status).to eq(302)
end
end
end