dawarich/spec/requests/stats_spec.rb

12 lines
216 B
Ruby
Raw Normal View History

2024-03-23 15:29:55 -04:00
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