diff --git a/src/lints/module_missing.ron b/src/lints/module_missing.ron index eb86ec8e..776511f1 100644 --- a/src/lints/module_missing.ron +++ b/src/lints/module_missing.ron @@ -47,4 +47,7 @@ SemverQuery( }, error_message: "A publicly-visible module cannot be imported by its prior path. A `pub use` may have been removed, or the module may have been renamed, removed, or made non-public.", per_result_error_template: Some("mod {{join \"::\" path}}, previously in file {{span_filename}}:{{span_begin_line}}"), + witness: ( + hint_template: r#"use {{join "::" path}}::*;"#, + ), ) diff --git a/test_outputs/witnesses/module_missing.snap b/test_outputs/witnesses/module_missing.snap new file mode 100644 index 00000000..4fefcf2e --- /dev/null +++ b/test_outputs/witnesses/module_missing.snap @@ -0,0 +1,24 @@ +--- +source: src/query.rs +description: "Lint `module_missing` did not have the expected witness output.\nSee https://github.com/obi1kenobi/cargo-semver-checks/blob/main/CONTRIBUTING.md#testing-witnesses\nfor more information." +expression: "&actual_witnesses" +--- +[["./test_crates/module_missing/"]] +filename = 'src/lib.rs' +begin_line = 10 +hint = 'use module_missing::bb::will_remove::*;' + +[["./test_crates/module_missing/"]] +filename = 'src/lib.rs' +begin_line = 13 +hint = 'use module_missing::will_make_private::*;' + +[["./test_crates/trait_missing/"]] +filename = 'src/lib.rs' +begin_line = 7 +hint = 'use trait_missing::my_pub_mod::*;' + +[["./test_crates/trait_missing_with_major_bump/"]] +filename = 'src/lib.rs' +begin_line = 7 +hint = 'use trait_missing_with_major_bump::my_pub_mod::*;'