summary refs log tree commit diff
path: root/14/tests/main.rs
blob: 64d9eb980091dc681b646568813514397f283339 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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_14")?;

  command.arg("input");
  command.assert().success().stdout("12408060320841\n4466434626828\n");

  Ok(())
}