From ccd4d3b436259b86f2fa3b433cd19a7bd60752da Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Fri, 17 Dec 2021 01:15:06 -0800 Subject: 17 --- 17/tests/main.rs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 17/tests/main.rs (limited to '17/tests') diff --git a/17/tests/main.rs b/17/tests/main.rs new file mode 100644 index 0000000..20b4420 --- /dev/null +++ b/17/tests/main.rs @@ -0,0 +1,19 @@ +use assert_cmd::prelude::*; +//use predicates::prelude::*; +use std::process::Command; + + +#[test] +fn personal_input() -> Result<(), Box> { + let mut command = Command::cargo_bin("advent_17")?; + + command.arg("input"); + command.assert().success().stdout( + "3160\n\ + 1928\n"); + + + + Ok(()) +} + -- cgit 1.4.1