diff options
author | Irene Knapp <ireneista@gmail.com> | 2021-12-04 21:41:29 -0800 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2021-12-04 21:41:29 -0800 |
commit | e5db5a78aa0bdaf9066df2c0316663e3365de209 (patch) | |
tree | b7096d66815f63c8605fd4edb40358dfd8109032 /05/tests | |
parent | 4fbf2687ff604c6dcddfde908e74a434acea7914 (diff) |
05 :)
Diffstat (limited to '05/tests')
-rw-r--r-- | 05/tests/main.rs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/05/tests/main.rs b/05/tests/main.rs new file mode 100644 index 0000000..ad291d8 --- /dev/null +++ b/05/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_05")?; + + command.arg("input"); + command.assert().success().stdout( + "4655\n\ + 20500\n"); + + Ok(()) +} + |