From 41a912de958c72336628239d0196d4f0b7627fd7 Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Mon, 7 Dec 2020 22:26:59 -0800 Subject: 08 --- 08/tests/main.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 08/tests/main.rs (limited to '08/tests') diff --git a/08/tests/main.rs b/08/tests/main.rs new file mode 100644 index 0000000..3761615 --- /dev/null +++ b/08/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_08")?; + + command.arg("input"); + command.assert().success().stdout("1801\nnormal exit 2060\n"); + + Ok(()) +} + -- cgit 1.4.1