-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deny having src/test exisiting in tidy
- Loading branch information
1 parent
b22c152
commit ebd3352
Showing
3 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
use std::path::Path; | ||
|
||
const FORBIDDEN_PATH: &str = "src/test"; | ||
const ALLOWED_PATH: &str = "tests"; | ||
|
||
pub fn check(root_path: impl AsRef<Path>, bad: &mut bool) { | ||
if root_path.as_ref().join(FORBIDDEN_PATH).exists() { | ||
tidy_error!( | ||
bad, | ||
"Tests have been moved, please move them from {} to {}", | ||
root_path.as_ref().join(FORBIDDEN_PATH).display(), | ||
root_path.as_ref().join(ALLOWED_PATH).display() | ||
) | ||
} | ||
} |