diff options
author | Irene Knapp <ireneista@gmail.com> | 2020-12-11 21:51:42 -0800 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2020-12-11 21:51:42 -0800 |
commit | fbc6c484188873b0063dfb16a99f10d1c1d125b6 (patch) | |
tree | 6f5d14a060c2138ed87347e2ec7242eebd3bc788 /12/tests | |
parent | ee6e752de4be6bbe1e1fc4713504be068373a140 (diff) |
12
Diffstat (limited to '12/tests')
-rw-r--r-- | 12/tests/main.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/12/tests/main.rs b/12/tests/main.rs new file mode 100644 index 0000000..e883e41 --- /dev/null +++ b/12/tests/main.rs @@ -0,0 +1,14 @@ +use assert_cmd::prelude::*; +use std::process::Command; + + +#[test] +fn personal_input() -> Result<(), Box<dyn std::error::Error>> { + let mut command = Command::cargo_bin("advent_12")?; + + command.arg("input"); + command.assert().success().stdout("858\n39140\n"); + + Ok(()) +} + |