From 5879332d34745c8fa22881b899edbb04d31beb2b Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Tue, 7 Dec 2021 22:30:48 -0800 Subject: 08 --- 08/tests/main.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 08/tests/main.rs (limited to '08/tests') diff --git a/08/tests/main.rs b/08/tests/main.rs new file mode 100644 index 0000000..e9b1eb4 --- /dev/null +++ b/08/tests/main.rs @@ -0,0 +1,17 @@ +use assert_cmd::prelude::*; +//use predicates::prelude::*; +use std::process::Command; + + +#[test] +fn personal_input() -> Result<(), Box> { + let mut command = Command::cargo_bin("advent_07")?; + + command.arg("input"); + command.assert().success().stdout( + "343441\n\ + 98925151\n"); + + Ok(()) +} + -- cgit 1.4.1