aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 3d7137357d904e5a07b3ade97e16b26f074865b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod element;
mod error;
mod parser;
mod reader;
mod writer;

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn it_works() {
        let result = 2 + 2;
        assert_eq!(result, 4);
    }
}