summary refs log tree commit diff
path: root/14/tests/main.rs
diff options
context:
space:
mode:
authorIrene Knapp <ireneista@gmail.com>2020-12-14 00:08:44 -0800
committerIrene Knapp <ireneista@gmail.com>2020-12-14 00:08:44 -0800
commit30fb06f502d04d9a0b78cb21df36949dca6d5c02 (patch)
treeda78b7f46d5b65853dc2df472e3d64b92ba77ccd /14/tests/main.rs
parent98d41362b766072c278da5076df2ca7e4fe8cf9d (diff)
14
Diffstat (limited to '14/tests/main.rs')
-rw-r--r--14/tests/main.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/14/tests/main.rs b/14/tests/main.rs
new file mode 100644
index 0000000..64d9eb9
--- /dev/null
+++ b/14/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_14")?;
+
+  command.arg("input");
+  command.assert().success().stdout("12408060320841\n4466434626828\n");
+
+  Ok(())
+}
+