summary refs log tree commit diff
path: root/22/tests
diff options
context:
space:
mode:
authorIrene Knapp <ireneista@gmail.com>2020-12-21 23:29:18 -0800
committerIrene Knapp <ireneista@gmail.com>2020-12-21 23:29:18 -0800
commit117ab73fa491c4692524068c077d5dd6fb5101bb (patch)
tree59fd25f56ad365481a209e5930b3c74d9e016a6d /22/tests
parent26c42134a8a66f02aedc0a77be3ab46b170a9d76 (diff)
22
Diffstat (limited to '22/tests')
-rw-r--r--22/tests/main.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/22/tests/main.rs b/22/tests/main.rs
new file mode 100644
index 0000000..763a28a
--- /dev/null
+++ b/22/tests/main.rs
@@ -0,0 +1,14 @@
+use assert_cmd::prelude::*;
+use std::process::Command;
+
+
+#[test]
+fn personal_input() -> Result<(), Box<dyn std::error::Error>> {
+  let mut command = Command::cargo_bin("advent_22")?;
+
+  command.arg("input");
+  command.assert().success().stdout("32677\n33661\n");
+
+  Ok(())
+}
+