From e9f5cbe12013d3c41a6c438e767025aba66fe53b Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Tue, 8 Dec 2020 21:32:45 -0800 Subject: 09 --- 09/tests/main.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 09/tests/main.rs (limited to '09/tests/main.rs') diff --git a/09/tests/main.rs b/09/tests/main.rs new file mode 100644 index 0000000..e34e4b6 --- /dev/null +++ b/09/tests/main.rs @@ -0,0 +1,14 @@ +use assert_cmd::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("69316178\n9351526\n"); + + Ok(()) +} + -- cgit 1.4.1