From 8079dd2a895f8a55368761940eba5670e24d0411 Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Tue, 7 Dec 2021 03:14:11 -0800 Subject: 07 --- 07/tests/main.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 07/tests/main.rs (limited to '07/tests') diff --git a/07/tests/main.rs b/07/tests/main.rs new file mode 100644 index 0000000..e9b1eb4 --- /dev/null +++ b/07/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