From d02b18e2f5a7baf46e2c6c8a531b05b9851f5fa4 Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Thu, 2 Dec 2021 21:48:57 -0800 Subject: 03 --- 03/tests/main.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 03/tests/main.rs (limited to '03/tests') diff --git a/03/tests/main.rs b/03/tests/main.rs new file mode 100644 index 0000000..b74d88d --- /dev/null +++ b/03/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_02")?; + + command.arg("input"); + command.assert().success().stdout( + "1813801\n\ + 1960569556\n"); + + Ok(()) +} + -- cgit 1.4.1