diff options
author | Irene Knapp <ireneista@gmail.com> | 2020-12-09 22:32:05 -0800 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2020-12-09 22:32:05 -0800 |
commit | 99ffb910798d46b8c8a6d91aa8ff2b06fc4313f8 (patch) | |
tree | 75cc47c2e5467f328f8675f6f9b8ec7ed311ce30 /10/tests | |
parent | e9f5cbe12013d3c41a6c438e767025aba66fe53b (diff) |
10
Diffstat (limited to '10/tests')
-rw-r--r-- | 10/tests/main.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/10/tests/main.rs b/10/tests/main.rs new file mode 100644 index 0000000..e0b01e8 --- /dev/null +++ b/10/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_10")?; + + command.arg("input"); + command.assert().success().stdout("3034\n259172170858496\n"); + + Ok(()) +} + |