From 7357cbdbd4424a06db8fb11546626f97783135a6 Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Tue, 15 Dec 2020 00:31:26 -0800 Subject: 15 --- 15/tests/main.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 15/tests/main.rs (limited to '15/tests/main.rs') diff --git a/15/tests/main.rs b/15/tests/main.rs new file mode 100644 index 0000000..51cb39b --- /dev/null +++ b/15/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_15")?; + + command.arg("input"); + command.assert().success().stdout("1280\n651639\n"); + + Ok(()) +} + -- cgit 1.4.1