From 4cf1061e00993118847c24177ea2cc1e5455211d Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Mon, 20 Dec 2021 22:59:31 -0800 Subject: 21 --- 21/tests/main.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 21/tests/main.rs (limited to '21/tests') diff --git a/21/tests/main.rs b/21/tests/main.rs new file mode 100644 index 0000000..b340c65 --- /dev/null +++ b/21/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_21")?; + + command.arg("input"); + command.assert().success().stdout( + "888735\n\ + 647608359455719\n"); + + Ok(()) +} + -- cgit 1.4.1