From f06911cb90fde38fca0f31620a3a4dfd3e5c5a9c Mon Sep 17 00:00:00 2001 From: Ed Page Date: Mon, 24 Jul 2023 14:42:27 -0500 Subject: [PATCH] refactor(test): Move cargo-config into a dir This is split out of #11912 and is prep for adding more UI tests. Generally our UI tests are in a directory named after the full cargo command (`cargo config`). These tend to use `snapbox`. Here we are tests for the `cargo config` command not written by `snapbox` in a `cargo_config.rs` file. This conflicts with adding snapbox UI tests later in a `cargo_config/` folder. Upon looking at this file, it appears to be UI tests, so I think it would make sense to move them into the `cargo_config/` folder. Definitely wouldn't make sense to move them into `config.rs` since that is general config testing. --- tests/testsuite/{cargo_config.rs => cargo_config/mod.rs} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/testsuite/{cargo_config.rs => cargo_config/mod.rs} (100%) diff --git a/tests/testsuite/cargo_config.rs b/tests/testsuite/cargo_config/mod.rs similarity index 100% rename from tests/testsuite/cargo_config.rs rename to tests/testsuite/cargo_config/mod.rs