From 84f096f97b40e7f7394b72e3b54b19804e9ab6ac Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Sun, 5 Dec 2021 21:23:12 -0800 Subject: 06 --- 06/tests/main.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 06/tests/main.rs (limited to '06/tests') diff --git a/06/tests/main.rs b/06/tests/main.rs new file mode 100644 index 0000000..ad291d8 --- /dev/null +++ b/06/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_05")?; + + command.arg("input"); + command.assert().success().stdout( + "4655\n\ + 20500\n"); + + Ok(()) +} + -- cgit 1.4.1