diff options
author | Irene Knapp <ireneista@gmail.com> | 2020-12-07 22:26:59 -0800 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2020-12-07 22:26:59 -0800 |
commit | 41a912de958c72336628239d0196d4f0b7627fd7 (patch) | |
tree | c5d335a10d372a62a8c440cb7fc3ea6785dbf90a /08/tests | |
parent | e3e71ffb705208cc188ff19a4936880f709aaf12 (diff) |
08
Diffstat (limited to '08/tests')
-rw-r--r-- | 08/tests/main.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/08/tests/main.rs b/08/tests/main.rs new file mode 100644 index 0000000..3761615 --- /dev/null +++ b/08/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_08")?; + + command.arg("input"); + command.assert().success().stdout("1801\nnormal exit 2060\n"); + + Ok(()) +} + |