From af556aa01c1179d3fbea2f6f34f3b51bb1aee2f8 Mon Sep 17 00:00:00 2001 From: Yuya Nishihara Date: Fri, 4 Oct 2024 20:05:03 +0900 Subject: [PATCH] tests: rename test_file_print_command.rs to_file_show_command.rs --- cli/tests/runner.rs | 2 +- .../{test_file_print_command.rs => test_file_show_command.rs} | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename cli/tests/{test_file_print_command.rs => test_file_show_command.rs} (98%) diff --git a/cli/tests/runner.rs b/cli/tests/runner.rs index 1420e30cd..2053aa77a 100644 --- a/cli/tests/runner.rs +++ b/cli/tests/runner.rs @@ -29,7 +29,7 @@ mod test_duplicate_command; mod test_edit_command; mod test_evolog_command; mod test_file_chmod_command; -mod test_file_print_command; +mod test_file_show_command; mod test_file_track_untrack_commands; mod test_fix_command; mod test_generate_md_cli_help; diff --git a/cli/tests/test_file_print_command.rs b/cli/tests/test_file_show_command.rs similarity index 98% rename from cli/tests/test_file_print_command.rs rename to cli/tests/test_file_show_command.rs index c7643c57e..9fd12880a 100644 --- a/cli/tests/test_file_print_command.rs +++ b/cli/tests/test_file_show_command.rs @@ -15,7 +15,7 @@ use crate::common::TestEnvironment; #[test] -fn test_print() { +fn test_show() { let test_env = TestEnvironment::default(); test_env.jj_cmd_ok(test_env.env_root(), &["git", "init", "repo"]); let repo_path = test_env.env_root().join("repo"); @@ -96,7 +96,7 @@ fn test_print() { #[cfg(unix)] #[test] -fn test_print_symlink() { +fn test_show_symlink() { let test_env = TestEnvironment::default(); test_env.jj_cmd_ok(test_env.env_root(), &["git", "init", "repo"]); let repo_path = test_env.env_root().join("repo");