diff options
author | Irene Knapp <ireneista@gmail.com> | 2020-12-08 21:32:45 -0800 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2020-12-08 21:32:45 -0800 |
commit | e9f5cbe12013d3c41a6c438e767025aba66fe53b (patch) | |
tree | 805caf354dac7d5f692d2f4ac355d6669494bdfb /09/tests | |
parent | d8b56bc04ae56619687ada8fddbdf61ddd588262 (diff) |
09
Diffstat (limited to '09/tests')
-rw-r--r-- | 09/tests/main.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/09/tests/main.rs b/09/tests/main.rs new file mode 100644 index 0000000..e34e4b6 --- /dev/null +++ b/09/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_09")?; + + command.arg("input"); + command.assert().success().stdout("69316178\n9351526\n"); + + Ok(()) +} + |