jsonc_tools/
lib.rs

1// extern crate jsonc_tools;
2
3pub mod parser;
4
5#[cfg(test)]
6mod tests {
7    #[test]
8    fn it_works() {
9        assert_eq!(2 + 2, 4);
10    }
11
12    use pretty_assertions::assert_eq;
13
14    #[test]
15    fn it_works_pretty_assertions() {
16        assert_eq!(2 + 2, 4);
17    }
18}