From 99ffb910798d46b8c8a6d91aa8ff2b06fc4313f8 Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Wed, 9 Dec 2020 22:32:05 -0800 Subject: 10 --- 10/tests/main.rs | 14 ++++++++++++++ 1 file changed, 14 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..e0b01e8 --- /dev/null +++ b/10/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_10")?; + + command.arg("input"); + command.assert().success().stdout("3034\n259172170858496\n"); + + Ok(()) +} + -- cgit 1.4.1