From 55fc103c60e2d7063d8ea75892058f8bd9d723a9 Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Sat, 11 Dec 2021 21:35:38 -0800 Subject: 12 --- 12/tests/main.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 12/tests/main.rs (limited to '12/tests') diff --git a/12/tests/main.rs b/12/tests/main.rs new file mode 100644 index 0000000..962bfa0 --- /dev/null +++ b/12/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_12")?; + + command.arg("input"); + command.assert().success().stdout( + "5576\n\ + 152837\n"); + + Ok(()) +} + -- cgit 1.4.1