sita 0.2.0

Sita: static site generator (SSG) for Markdown and HTML
//! Configuration test of the `confy` crate for the application.
//!
//! Our source code convention is using this file `confy.rs`
//! in order to test configuration file loading and parsing.
//!
//! See also the project file `config.rs` for our `Config` struct.

#[cfg(test)]
mod tests {
    use crate::app::config::Config;

    #[test]
    fn test_confy() {
        let config: Config = ::confy::load("sita", None).unwrap();
        dbg!(config);
        // assert_eq!(i_string, o_string); //TODO
    }

}