diff options
author | Irene Knapp <ireneista@gmail.com> | 2020-12-12 21:36:20 -0800 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2020-12-12 21:36:20 -0800 |
commit | 98d41362b766072c278da5076df2ca7e4fe8cf9d (patch) | |
tree | 51115e7ded8a0ebe907d8bcff22a4fe3c1095951 /13/tests | |
parent | fbc6c484188873b0063dfb16a99f10d1c1d125b6 (diff) |
13
Diffstat (limited to '13/tests')
-rw-r--r-- | 13/tests/main.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/13/tests/main.rs b/13/tests/main.rs new file mode 100644 index 0000000..6dbc573 --- /dev/null +++ b/13/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_13")?; + + command.arg("input"); + command.assert().success().stdout("1835\n247086664214628\n"); + + Ok(()) +} + |