diff options
author | Irene Knapp <ireneista@gmail.com> | 2020-12-07 22:28:07 -0800 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2020-12-07 22:28:07 -0800 |
commit | ce0fc259ee8c064e2cb58baa3053551e3187c496 (patch) | |
tree | 96945ce76a38963f4128bd1e4a46f64eafcd19af /07 | |
parent | 41a912de958c72336628239d0196d4f0b7627fd7 (diff) |
regression test for 07
Diffstat (limited to '07')
-rw-r--r-- | 07/tests/main.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/07/tests/main.rs b/07/tests/main.rs new file mode 100644 index 0000000..d80525c --- /dev/null +++ b/07/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_07")?; + + command.arg("input"); + command.assert().success().stdout("259\n45018\n"); + + Ok(()) +} + |