diff options
author | Irene Knapp <ireneista@gmail.com> | 2020-12-17 21:56:07 -0800 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2020-12-17 21:56:07 -0800 |
commit | 781e65e5a4444800982da71d97cb6b05d7dca17e (patch) | |
tree | c9919f20c0153409b0d344f33e5a4791177387da /18/tests | |
parent | 9acefe571def801d63282620cb31833a321bc551 (diff) |
18
Diffstat (limited to '18/tests')
-rw-r--r-- | 18/tests/main.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/18/tests/main.rs b/18/tests/main.rs new file mode 100644 index 0000000..394fb0f --- /dev/null +++ b/18/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_17")?; + + command.arg("input"); + command.assert().success().stdout("265\n1936\n"); + + Ok(()) +} + |