diff options
author | Irene Knapp <ireneista@gmail.com> | 2021-12-24 21:22:33 -0800 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2021-12-24 21:22:33 -0800 |
commit | 8d63b78e7031ea442404c0cb4ecf0e5c93972eeb (patch) | |
tree | 4fb4b60d1d25614c6f190ecd16bd7d2106da82bf /25/tests | |
parent | 2821ecdd2272213cac2fccd85d861e46a0f64648 (diff) |
Diffstat (limited to '25/tests')
-rw-r--r-- | 25/tests/main.rs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/25/tests/main.rs b/25/tests/main.rs new file mode 100644 index 0000000..6f37464 --- /dev/null +++ b/25/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_23")?; + + command.arg("input"); + command.assert().success().stdout( + "13336\n\ + 53308\n"); + + Ok(()) +} + |