From 964c72cc4fe03c06bd067fc7605cca96f8b94943 Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Thu, 9 Dec 2021 22:06:45 -0800 Subject: 10 --- 10/tests/main.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 10/tests/main.rs (limited to '10/tests') diff --git a/10/tests/main.rs b/10/tests/main.rs new file mode 100644 index 0000000..ef0958a --- /dev/null +++ b/10/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_10")?; + + command.arg("input"); + command.assert().success().stdout( + "387363\n\ + 4330777059\n"); + + Ok(()) +} + -- cgit 1.4.1