From fb70e46dc0009c69f617135b0249cdda31b978bf Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Wed, 8 Dec 2021 21:28:44 -0800 Subject: 09 :) --- 09/tests/main.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 09/tests/main.rs (limited to '09/tests') diff --git a/09/tests/main.rs b/09/tests/main.rs new file mode 100644 index 0000000..ca042d2 --- /dev/null +++ b/09/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_09")?; + + command.arg("input"); + command.assert().success().stdout( + "502\n\ + 1330560\n"); + + Ok(()) +} + -- cgit 1.4.1