From 08491f4e7e21ca2e59aaeb90aee0982add800859 Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Sun, 6 Dec 2020 02:11:04 -0800 Subject: Add regression tests. --- 05/tests/main.rs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 05/tests/main.rs (limited to '05/tests') diff --git a/05/tests/main.rs b/05/tests/main.rs new file mode 100644 index 0000000..b5d0002 --- /dev/null +++ b/05/tests/main.rs @@ -0,0 +1,15 @@ +use assert_cmd::prelude::*; +//use predicates::prelude::*; +use std::process::Command; + + +#[test] +fn personal_input() -> Result<(), Box> { + let mut command = Command::cargo_bin("advent_05")?; + + command.arg("input"); + command.assert().success().stdout("996\n671\n"); + + Ok(()) +} + -- cgit 1.4.1