diff options
author | Irene Knapp <ireneista@gmail.com> | 2021-12-19 21:44:27 -0800 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2021-12-19 21:44:27 -0800 |
commit | da3d98b651738c2341bafa4b3c5e1de162b4a9f8 (patch) | |
tree | 3a0f41c052391340a161b9415a51023fac0e27aa /20/tests | |
parent | 9fbbdd89236b187e83f7d24c0d0607c7b418296d (diff) |
20
Diffstat (limited to '20/tests')
-rw-r--r-- | 20/tests/main.rs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/20/tests/main.rs b/20/tests/main.rs new file mode 100644 index 0000000..826e079 --- /dev/null +++ b/20/tests/main.rs @@ -0,0 +1,19 @@ +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_20")?; + + command.arg("small"); + command.assert().success().stdout( + "5573\n\ + 20097\n"); + + + + Ok(()) +} + |