summary refs log tree commit diff
path: root/06/tests/main.rs
diff options
context:
space:
mode:
Diffstat (limited to '06/tests/main.rs')
-rw-r--r--06/tests/main.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/06/tests/main.rs b/06/tests/main.rs
new file mode 100644
index 0000000..ad291d8
--- /dev/null
+++ b/06/tests/main.rs
@@ -0,0 +1,17 @@
+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_05")?;
+
+  command.arg("input");
+  command.assert().success().stdout(
+      "4655\n\
+      20500\n");
+
+  Ok(())
+}
+