diff options
author | Irene Knapp <ireneista@gmail.com> | 2021-12-23 02:28:25 -0800 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2021-12-23 02:28:25 -0800 |
commit | 5a09744b94d58001921ec623369c43e6e14661a3 (patch) | |
tree | d885a6345d0f08d7b1e66749bcb34d6370e7afb8 /23/tests | |
parent | 7b93f6899397d9a8841e33470c79525c1ad9027c (diff) |
23
Diffstat (limited to '23/tests')
-rw-r--r-- | 23/tests/main.rs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/23/tests/main.rs b/23/tests/main.rs new file mode 100644 index 0000000..6f37464 --- /dev/null +++ b/23/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(()) +} + |