summary refs log tree commit diff
path: root/24/tests
diff options
context:
space:
mode:
authorIrene Knapp <ireneista@gmail.com>2020-12-23 22:02:37 -0800
committerIrene Knapp <ireneista@gmail.com>2020-12-23 22:02:37 -0800
commitbc3acb749d563a5d5db1551b40b433a900d4c154 (patch)
tree0aca888050be707a3dd690d799c5e64c3052c7bc /24/tests
parentbf4ada00a845e08e552f0521d245c23f04c47b1f (diff)
24! yay :)
Diffstat (limited to '24/tests')
-rw-r--r--24/tests/main.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/24/tests/main.rs b/24/tests/main.rs
new file mode 100644
index 0000000..4b8bde1
--- /dev/null
+++ b/24/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_23")?;
+
+  command.arg("input");
+  command.assert().success().stdout("24798635\n12757828710\n");
+
+  Ok(())
+}
+