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