From 15d6c39addee644ea7d96c744e721225e63b03e2 Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Fri, 18 Dec 2020 21:47:07 -0800 Subject: 19 --- 19/tests/main.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 19/tests/main.rs (limited to '19/tests') diff --git a/19/tests/main.rs b/19/tests/main.rs new file mode 100644 index 0000000..394fb0f --- /dev/null +++ b/19/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_17")?; + + command.arg("input"); + command.assert().success().stdout("265\n1936\n"); + + Ok(()) +} + -- cgit 1.4.1