diff options
Diffstat (limited to '05')
-rw-r--r-- | 05/Cargo.toml | 3 | ||||
-rw-r--r-- | 05/tests/main.rs | 15 |
2 files changed, 18 insertions, 0 deletions
diff --git a/05/Cargo.toml b/05/Cargo.toml index 4e5fdbd..aea1a1e 100644 --- a/05/Cargo.toml +++ b/05/Cargo.toml @@ -6,3 +6,6 @@ edition = "2018" [dependencies] advent_lib = { path = "../lib" } + +[dev-dependencies] +assert_cmd = "0.10" diff --git a/05/tests/main.rs b/05/tests/main.rs new file mode 100644 index 0000000..b5d0002 --- /dev/null +++ b/05/tests/main.rs @@ -0,0 +1,15 @@ +use assert_cmd::prelude::*; +//use predicates::prelude::*; +use std::process::Command; + + +#[test] +fn personal_input() -> Result<(), Box<dyn std::error::Error>> { + let mut command = Command::cargo_bin("advent_05")?; + + command.arg("input"); + command.assert().success().stdout("996\n671\n"); + + Ok(()) +} + |