From 30fb06f502d04d9a0b78cb21df36949dca6d5c02 Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Mon, 14 Dec 2020 00:08:44 -0800 Subject: 14 --- 14/tests/main.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 14/tests/main.rs (limited to '14/tests/main.rs') diff --git a/14/tests/main.rs b/14/tests/main.rs new file mode 100644 index 0000000..64d9eb9 --- /dev/null +++ b/14/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_14")?; + + command.arg("input"); + command.assert().success().stdout("12408060320841\n4466434626828\n"); + + Ok(()) +} + -- cgit 1.4.1