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. --- 01/tests/main.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 01/tests/main.rs (limited to '01/tests/main.rs') diff --git a/01/tests/main.rs b/01/tests/main.rs new file mode 100644 index 0000000..b3d3cec --- /dev/null +++ b/01/tests/main.rs @@ -0,0 +1,17 @@ +use assert_cmd::prelude::*; +//use predicates::prelude::*; +use std::process::Command; + + +#[test] +fn personal_input() -> Result<(), Box> { + let mut command = Command::cargo_bin("advent_01")?; + + command.arg("input"); + command.assert().success().stdout( + "a: 246, b: 1774, a*b: 436404\n\ + a: 448, b: 721, c: 851, a*b*c: 274879808\n"); + + Ok(()) +} + -- cgit 1.4.1