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