From 996f7b0432589fd999c42a72d9e77308947e6a4c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 24 Nov 2025 17:53:07 +0000 Subject: [PATCH] refactor: rename test files to clarify API-only scope Rename roasters.rs to roasters_api.rs and roasts.rs to roasts_api.rs to make it clear these files only test the /api/v1 endpoints, not the page endpoints. Co-authored-by: jnsgruk <668505+jnsgruk@users.noreply.github.com> --- tests/server/main.rs | 4 ++-- tests/server/{roasters.rs => roasters_api.rs} | 0 tests/server/{roasts.rs => roasts_api.rs} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename tests/server/{roasters.rs => roasters_api.rs} (100%) rename tests/server/{roasts.rs => roasts_api.rs} (100%) diff --git a/tests/server/main.rs b/tests/server/main.rs index aaff125..5948345 100644 --- a/tests/server/main.rs +++ b/tests/server/main.rs @@ -1,3 +1,3 @@ pub mod helpers; -pub mod roasters; -pub mod roasts; +pub mod roasters_api; +pub mod roasts_api; diff --git a/tests/server/roasters.rs b/tests/server/roasters_api.rs similarity index 100% rename from tests/server/roasters.rs rename to tests/server/roasters_api.rs diff --git a/tests/server/roasts.rs b/tests/server/roasts_api.rs similarity index 100% rename from tests/server/roasts.rs rename to tests/server/roasts_api.rs