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

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

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