good_parser/
lib.rs

1/// The good-parser constant variable
2pub const PKG_NAME: &str = "good-parser";
3
4#[cfg(test)]
5mod tests {
6    use super::*;
7
8    #[test]
9    fn test_good_parser_value() {
10        assert_eq!(PKG_NAME, "good-parser");
11    }
12}