diff options
author | Irene Knapp <ireneista@gmail.com> | 2020-12-15 00:31:26 -0800 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2020-12-15 00:31:26 -0800 |
commit | 7357cbdbd4424a06db8fb11546626f97783135a6 (patch) | |
tree | 1877edb8a3321ab75a27a257484670c53f294d72 /15/tests | |
parent | 30fb06f502d04d9a0b78cb21df36949dca6d5c02 (diff) |
15
Diffstat (limited to '15/tests')
-rw-r--r-- | 15/tests/main.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/15/tests/main.rs b/15/tests/main.rs new file mode 100644 index 0000000..51cb39b --- /dev/null +++ b/15/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_15")?; + + command.arg("input"); + command.assert().success().stdout("1280\n651639\n"); + + Ok(()) +} + |