From e07d2a9191fe5204a3cff7e9a62ba1c7c2d3a618 Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Fri, 10 Dec 2021 21:26:33 -0800 Subject: 11 --- 11/tests/main.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 11/tests/main.rs (limited to '11/tests') diff --git a/11/tests/main.rs b/11/tests/main.rs new file mode 100644 index 0000000..d0ffe86 --- /dev/null +++ b/11/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_11")?; + + command.arg("input"); + command.assert().success().stdout( + "1620\n\ + 371\n"); + + Ok(()) +} + -- cgit 1.4.1