diff options
author | Irene Knapp <ireneista@gmail.com> | 2021-12-14 22:13:19 -0800 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2021-12-14 22:13:19 -0800 |
commit | ea68d068cfa85d3e5ca5efe44bf470554a2c4006 (patch) | |
tree | 368a3d0ddd250420cfb50b1869430ebb400eafed /15/tests | |
parent | 73367376f62bc3f19339d01a238551cb3365a329 (diff) |
15
Diffstat (limited to '15/tests')
-rw-r--r-- | 15/tests/main.rs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/15/tests/main.rs b/15/tests/main.rs new file mode 100644 index 0000000..3e205b0 --- /dev/null +++ b/15/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_14")?; + + command.arg("input"); + command.assert().success().stdout( + "562\n\ + 2874\n"); + + Ok(()) +} + |