From 3d751a279df8fd1b34850558805e31403ca11bb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Gaya?= <sebastien.gaya@gmail.com> Date: Fri, 9 Feb 2024 22:40:40 +0100 Subject: [PATCH] vcr in server/dashboard#index --- test/controllers/server/dashboard_controller_test.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/controllers/server/dashboard_controller_test.rb b/test/controllers/server/dashboard_controller_test.rb index 6d8882ab3..86a7a9932 100644 --- a/test/controllers/server/dashboard_controller_test.rb +++ b/test/controllers/server/dashboard_controller_test.rb @@ -4,7 +4,9 @@ class Server::DashboardControllerTest < ActionDispatch::IntegrationTest include ServerSetup def test_index - get server_root_path - assert_response(:success) + VCR.use_cassette(location) do + get server_root_path + assert_response(:success) + end end end -- GitLab