pathmod 0.1.3

Re-export crate for pathmod
Documentation
1
2
3
4
5
6
7
8
9
10
// Trybuild-like negative tests by attempting to compile invalid derives in separate modules
// and asserting they fail at compile time is not possible here; instead, we ensure the
// successful paths are covered and we add a proc-macro crate tests to hit error arms.

#[test]
fn sanity() {
    // This test exists to ensure the file is discovered; invalid derive cases are in the
    // proc-macro crate tests where compile-fail can be asserted using trybuild.
    assert_eq!(1 + 1, 2);
}