From ee6e752de4be6bbe1e1fc4713504be068373a140 Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Thu, 10 Dec 2020 23:23:14 -0800 Subject: 11 --- 11/tests/main.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 11/tests/main.rs (limited to '11/tests') diff --git a/11/tests/main.rs b/11/tests/main.rs new file mode 100644 index 0000000..c09af93 --- /dev/null +++ b/11/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_11")?; + + command.arg("input"); + command.assert().success().stdout("2406\n2149\n"); + + Ok(()) +} + -- cgit 1.4.1