Test layout

This commit is contained in:
ARLakhin
2026-03-10 23:44:59 +03:00
parent ade07e6d84
commit 0dc0f10da7
14 changed files with 165 additions and 4 deletions
+11
View File
@@ -0,0 +1,11 @@
require 'rails_helper'
RSpec.describe "Auditors", type: :request do
describe "GET /index" do
it "returns http success" do
get "/auditors/index"
expect(response).to have_http_status(:success)
end
end
end