target_test_dir_support/
lib.rs

1//! A support crate for the `target-test-dir` crate
2//!
3//! This crate provides [get_base_test_dir] which can be used independently of the proc macro, as
4//! well as [transform_test_with_dir] which implements the actual macro transformation.
5
6mod basedir;
7mod procmacro;
8
9pub use self::basedir::get_base_test_dir;
10pub use self::procmacro::transform_test_with_dir;