2020-06-28 07:36:41 +02:00
|
|
|
// ██████╗ █████╗ ███████╗███████╗██╗███╗ ██╗ ██████╗
|
|
|
|
// ██╔══██╗██╔══██╗██╔════╝██╔════╝██║████╗ ██║██╔════╝
|
|
|
|
// ██████╔╝███████║███████╗███████╗██║██╔██╗ ██║██║ ███╗
|
|
|
|
// ██╔═══╝ ██╔══██║╚════██║╚════██║██║██║╚██╗██║██║ ██║
|
|
|
|
// ██║ ██║ ██║███████║███████║██║██║ ╚████║╚██████╔╝
|
|
|
|
// ╚═╝ ╚═╝ ╚═╝╚══════╝╚══════╝╚═╝╚═╝ ╚═══╝ ╚═════╝
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod passing {
|
|
|
|
use crate::opts::Options;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn defaults() {
|
|
|
|
let options: Options = Options::default();
|
|
|
|
|
2020-12-26 02:55:52 +01:00
|
|
|
assert_eq!(options.no_audio, false);
|
2020-12-31 23:17:17 +01:00
|
|
|
assert_eq!(options.base_url, None);
|
2020-06-28 07:36:41 +02:00
|
|
|
assert_eq!(options.no_css, false);
|
|
|
|
assert_eq!(options.no_frames, false);
|
|
|
|
assert_eq!(options.no_fonts, false);
|
|
|
|
assert_eq!(options.no_images, false);
|
|
|
|
assert_eq!(options.isolate, false);
|
|
|
|
assert_eq!(options.no_js, false);
|
|
|
|
assert_eq!(options.insecure, false);
|
|
|
|
assert_eq!(options.no_metadata, false);
|
|
|
|
assert_eq!(options.output, str!());
|
|
|
|
assert_eq!(options.silent, false);
|
|
|
|
assert_eq!(options.timeout, 0);
|
2020-12-31 23:17:17 +01:00
|
|
|
assert_eq!(options.user_agent, None);
|
2020-12-26 02:55:52 +01:00
|
|
|
assert_eq!(options.no_video, false);
|
2020-12-31 23:17:17 +01:00
|
|
|
|
|
|
|
assert_eq!(options.target, str!());
|
2020-06-28 07:36:41 +02:00
|
|
|
}
|
|
|
|
}
|