summary refs log tree commit diff
path: root/06
diff options
context:
space:
mode:
Diffstat (limited to '06')
-rw-r--r--06/Cargo.toml3
-rw-r--r--06/tests/main.rs15
2 files changed, 18 insertions, 0 deletions
diff --git a/06/Cargo.toml b/06/Cargo.toml
index e415fff..e5303bd 100644
--- a/06/Cargo.toml
+++ b/06/Cargo.toml
@@ -6,3 +6,6 @@ edition = "2018"
 
 [dependencies]
 advent_lib = { path = "../lib" }
+
+[dev-dependencies]
+assert_cmd = "0.10"
diff --git a/06/tests/main.rs b/06/tests/main.rs
new file mode 100644
index 0000000..06bc4fb
--- /dev/null
+++ b/06/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_06")?;
+
+  command.arg("input");
+  command.assert().success().stdout("6437\n3229\n");
+
+  Ok(())
+}
+