just playing with tangled
1use std::path::PathBuf;
2
3#[test]
4fn test_no_forgotten_test_files() {
5 let test_dir = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("tests");
6 testutils::assert_no_forgotten_test_files(&test_dir);
7}
8
9mod test_annotate;
10mod test_bad_locking;
11mod test_commit_builder;
12mod test_commit_concurrent;
13mod test_conflicts;
14mod test_default_revset_graph_iterator;
15mod test_fix;
16mod test_git;
17mod test_git_backend;
18mod test_gpg;
19mod test_id_prefix;
20mod test_index;
21mod test_init;
22mod test_load_repo;
23mod test_local_working_copy;
24mod test_local_working_copy_concurrent;
25mod test_local_working_copy_sparse;
26mod test_merge_trees;
27mod test_merged_tree;
28mod test_mut_repo;
29mod test_operations;
30mod test_refs;
31mod test_revset;
32mod test_rewrite;
33mod test_rewrite_duplicate;
34mod test_rewrite_transform;
35mod test_signing;
36mod test_ssh_signing;
37mod test_view;
38mod test_workspace;