From 2821ecdd2272213cac2fccd85d861e46a0f64648 Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Fri, 24 Dec 2021 18:16:54 -0800 Subject: 24 --- 24/tests/main.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 24/tests/main.rs (limited to '24/tests/main.rs') diff --git a/24/tests/main.rs b/24/tests/main.rs new file mode 100644 index 0000000..6f37464 --- /dev/null +++ b/24/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_23")?; + + command.arg("input"); + command.assert().success().stdout( + "13336\n\ + 53308\n"); + + Ok(()) +} + -- cgit 1.4.1