From eaac11df01dea60def680f61861fe7b728f03df1 Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Tue, 15 Dec 2020 22:07:54 -0800 Subject: 16 --- 16/tests/main.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 16/tests/main.rs (limited to '16/tests') diff --git a/16/tests/main.rs b/16/tests/main.rs new file mode 100644 index 0000000..ed02398 --- /dev/null +++ b/16/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_16")?; + + command.arg("input"); + command.assert().success().stdout("25788\n3902565915559\n"); + + Ok(()) +} + -- cgit 1.4.1