summary refs log tree commit diff
path: root/20/tests
diff options
context:
space:
mode:
authorIrene Knapp <ireneista@gmail.com>2020-12-20 01:20:16 -0800
committerIrene Knapp <ireneista@gmail.com>2020-12-20 01:20:16 -0800
commit6ace94fc43d95b7bedbd6fdcc207572385479f58 (patch)
treeebc25324f9562f705b938eb12801ebe3b2af06c5 /20/tests
parent15d6c39addee644ea7d96c744e721225e63b03e2 (diff)
20
Diffstat (limited to '20/tests')
-rw-r--r--20/tests/main.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/20/tests/main.rs b/20/tests/main.rs
new file mode 100644
index 0000000..feb9fe3
--- /dev/null
+++ b/20/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_20")?;
+
+  command.arg("input");
+  command.assert().success().stdout("29125888761511\n2219\n");
+
+  Ok(())
+}
+