diff options
author | Irene Knapp <ireneista@gmail.com> | 2021-12-13 21:45:35 -0800 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2021-12-13 21:45:35 -0800 |
commit | 2a0faf3e3a421786d6295831d978c54d4e34a6e6 (patch) | |
tree | 084375f6f9584ce491363e47b0163ca52866c645 /14/tests | |
parent | 9212ac0543ce2c8c6c5a93df841ac83c2dffd2d7 (diff) |
14
Diffstat (limited to '14/tests')
-rw-r--r-- | 14/tests/main.rs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/14/tests/main.rs b/14/tests/main.rs new file mode 100644 index 0000000..0427925 --- /dev/null +++ b/14/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( + "2797\n\ + 2926813379532\n"); + + Ok(()) +} + |