diff options
author | Irene Knapp <ireneista@gmail.com> | 2021-12-20 22:59:31 -0800 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2021-12-20 22:59:31 -0800 |
commit | 4cf1061e00993118847c24177ea2cc1e5455211d (patch) | |
tree | b860ec35b291da013798698d1f312a53c2d8e2fc /21/tests | |
parent | da3d98b651738c2341bafa4b3c5e1de162b4a9f8 (diff) |
21
Diffstat (limited to '21/tests')
-rw-r--r-- | 21/tests/main.rs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/21/tests/main.rs b/21/tests/main.rs new file mode 100644 index 0000000..b340c65 --- /dev/null +++ b/21/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_21")?; + + command.arg("input"); + command.assert().success().stdout( + "888735\n\ + 647608359455719\n"); + + Ok(()) +} + |