just playing with tangled
at ig/vimdiffwarn 79 lines 1.9 kB view raw
1use std::path::PathBuf; 2 3mod common; 4 5#[test] 6fn test_no_forgotten_test_files() { 7 let test_dir = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("tests"); 8 testutils::assert_no_forgotten_test_files(&test_dir); 9} 10 11mod test_abandon_command; 12mod test_absorb_command; 13mod test_acls; 14mod test_advance_bookmarks; 15mod test_alias; 16mod test_backout_command; 17mod test_bookmark_command; 18mod test_builtin_aliases; 19mod test_commit_command; 20mod test_commit_template; 21mod test_completion; 22mod test_concurrent_operations; 23mod test_config_command; 24mod test_config_schema; 25mod test_copy_detection; 26mod test_debug_command; 27mod test_debug_init_simple_command; 28mod test_describe_command; 29mod test_diff_command; 30mod test_diffedit_command; 31mod test_duplicate_command; 32mod test_edit_command; 33mod test_evolog_command; 34mod test_file_annotate_command; 35mod test_file_chmod_command; 36mod test_file_show_command; 37mod test_file_track_untrack_commands; 38mod test_fix_command; 39mod test_generate_md_cli_help; 40mod test_git_clone; 41mod test_git_colocated; 42mod test_git_fetch; 43mod test_git_import_export; 44mod test_git_init; 45mod test_git_private_commits; 46mod test_git_push; 47mod test_git_remotes; 48mod test_git_root; 49mod test_gitignores; 50mod test_global_opts; 51mod test_help_command; 52mod test_immutable_commits; 53mod test_interdiff_command; 54mod test_log_command; 55mod test_new_command; 56mod test_next_prev_commands; 57mod test_operations; 58mod test_parallelize_command; 59mod test_rebase_command; 60mod test_repo_change_report; 61mod test_resolve_command; 62mod test_restore_command; 63mod test_revert_command; 64mod test_revset_output; 65mod test_root; 66mod test_shell_completion; 67mod test_show_command; 68mod test_sign_unsign_commands; 69mod test_simplify_parents_command; 70mod test_sparse_command; 71mod test_split_command; 72mod test_squash_command; 73mod test_status_command; 74mod test_tag_command; 75mod test_templater; 76mod test_undo; 77mod test_util_command; 78mod test_working_copy; 79mod test_workspaces;