From 7b93f6899397d9a8841e33470c79525c1ad9027c Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Wed, 22 Dec 2021 03:13:06 -0800 Subject: 22 --- 22/tests/main.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 22/tests/main.rs (limited to '22/tests') diff --git a/22/tests/main.rs b/22/tests/main.rs new file mode 100644 index 0000000..5012dd4 --- /dev/null +++ b/22/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_22")?; + + command.arg("input"); + command.assert().success().stdout( + "612714\n\ + 1311612259117092\n"); + + Ok(()) +} + -- cgit 1.4.1