From cfba0cdb161a790cff0e5663ae0a025999ee5bef Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Wed, 23 Dec 2020 14:48:04 -0800 Subject: 23. wow ... that was a lot. --- 23/tests/main.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 23/tests/main.rs (limited to '23/tests/main.rs') diff --git a/23/tests/main.rs b/23/tests/main.rs new file mode 100644 index 0000000..4b8bde1 --- /dev/null +++ b/23/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_23")?; + + command.arg("input"); + command.assert().success().stdout("24798635\n12757828710\n"); + + Ok(()) +} + -- cgit 1.4.1