diff options
author | Irene Knapp <ireneista@gmail.com> | 2021-12-01 21:20:09 -0800 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2021-12-01 21:20:09 -0800 |
commit | 7573a5ecb3efcc690182cfc9a3948e01df7b7442 (patch) | |
tree | bfd74f252683dfee60f0659204ef42be6421e8b5 /02/tests | |
parent | aed6777886ca340e392a039150a3465e6436e0f8 (diff) |
02
Diffstat (limited to '02/tests')
-rw-r--r-- | 02/tests/main.rs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/02/tests/main.rs b/02/tests/main.rs new file mode 100644 index 0000000..b74d88d --- /dev/null +++ b/02/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_02")?; + + command.arg("input"); + command.assert().success().stdout( + "1813801\n\ + 1960569556\n"); + + Ok(()) +} + |