This file contains hidden or 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
| /// Match a test input with a pattern | |
| /// Only wildcard characters (*) in the pattern string have a special meaning: they match on zero or more characters | |
| fn wildcard_match(test: &[u8], pattern: &[u8]) -> bool { | |
| false | |
| } | |
| #[cfg(test)] | |
| mod tests { | |
| use super::wildcard_match; |