summary refs log tree commit diff
path: root/02/tests
diff options
context:
space:
mode:
authorIrene Knapp <ireneista@gmail.com>2020-12-06 02:11:04 -0800
committerIrene Knapp <ireneista@gmail.com>2020-12-06 02:11:04 -0800
commit08491f4e7e21ca2e59aaeb90aee0982add800859 (patch)
tree663a6d4a886df590cf3841244d4d742ad7006318 /02/tests
parent8993e7677d8ec550ea8de53ac8e3edbe48135b4d (diff)
Add regression tests.
Diffstat (limited to '02/tests')
-rw-r--r--02/tests/main.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/02/tests/main.rs b/02/tests/main.rs
new file mode 100644
index 0000000..43289d2
--- /dev/null
+++ b/02/tests/main.rs
@@ -0,0 +1,15 @@
+use assert_cmd::prelude::*;
+//use predicates::prelude::*;
+use std::process::Command;
+
+
+#[test]
+fn personal_input() -> Result<(), Box<dyn std::error::Error>> {
+  let mut command = Command::cargo_bin("advent_02")?;
+
+  command.arg("input");
+  command.assert().success().stdout("628\n705\n");
+
+  Ok(())
+}
+