diff options
author | Irene Knapp <ireneista@gmail.com> | 2021-12-10 21:26:33 -0800 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2021-12-10 21:26:33 -0800 |
commit | e07d2a9191fe5204a3cff7e9a62ba1c7c2d3a618 (patch) | |
tree | e7028724fe33763ea6f5f0bb899d48fbc472d240 /11/tests | |
parent | 964c72cc4fe03c06bd067fc7605cca96f8b94943 (diff) |
11
Diffstat (limited to '11/tests')
-rw-r--r-- | 11/tests/main.rs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/11/tests/main.rs b/11/tests/main.rs new file mode 100644 index 0000000..d0ffe86 --- /dev/null +++ b/11/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_11")?; + + command.arg("input"); + command.assert().success().stdout( + "1620\n\ + 371\n"); + + Ok(()) +} + |