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. --- 02/Cargo.toml | 3 +++ 02/tests/main.rs | 15 +++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 02/tests/main.rs (limited to '02') diff --git a/02/Cargo.toml b/02/Cargo.toml index f4176dc..60a8a3d 100644 --- a/02/Cargo.toml +++ b/02/Cargo.toml @@ -7,3 +7,6 @@ edition = "2018" [dependencies] advent_lib = { path = "../lib" } regex = "1" + +[dev-dependencies] +assert_cmd = "0.10" diff --git a/02/tests/main.rs b/02/tests/main.rs new file mode 100644 index 0000000..43289d2 --- /dev/null +++ b/02/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_02")?; + + command.arg("input"); + command.assert().success().stdout("628\n705\n"); + + Ok(()) +} + -- cgit 1.4.1