mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
12 lines
216 B
Ruby
12 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
|