diff options
author | Irene Knapp <ireneista@gmail.com> | 2020-12-21 23:29:11 -0800 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2020-12-21 23:29:11 -0800 |
commit | 26c42134a8a66f02aedc0a77be3ab46b170a9d76 (patch) | |
tree | 2a3fd02fd5b4c7d3f916a91adfc896a84820e139 /21/tests | |
parent | 6ace94fc43d95b7bedbd6fdcc207572385479f58 (diff) |
21
Diffstat (limited to '21/tests')
-rw-r--r-- | 21/tests/main.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/21/tests/main.rs b/21/tests/main.rs new file mode 100644 index 0000000..96d2816 --- /dev/null +++ b/21/tests/main.rs @@ -0,0 +1,15 @@ +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_21")?; + + command.arg("input"); + command.assert().success().stdout( + "2150\nvpzxk,bkgmcsx,qfzv,tjtgbf,rjdqt,hbnf,jspkl,hdcj\n"); + + Ok(()) +} + |