diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tests/run.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tests/run.rs b/src/tests/run.rs index 22e7004..597e400 100644 --- a/src/tests/run.rs +++ b/src/tests/run.rs @@ -17,6 +17,8 @@ // * along with this program. If not, see <http://www.gnu.org/licenses/>. * // ************************************************************************* +use std::path; + use super::*; #[test] @@ -108,3 +110,13 @@ fn version_option() { test(&re, "--version"); test(&re, "-V"); } + +#[test] +fn config_file() { + let config = + crate::config::read_config_file(&path::Path::new("doc/config.example.toml")).unwrap(); + + assert_eq!(Some(crate::args::DeviceModel::Pro), config.model); + assert_eq!(true, config.no_cache); + assert_eq!(2, config.verbosity); +} |