summary refs log tree commit diff
path: root/10/tests/main.rs
blob: ef0958af5540f8c7e86ef034e3d3446f5752b98c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use assert_cmd::prelude::*;
//use predicates::prelude::*;
use std::process::Command;


#[test]
fn personal_input() -> Result<(), Box<dyn std::error::Error>> {
  let mut command = Command::cargo_bin("advent_10")?;

  command.arg("input");
  command.assert().success().stdout(
      "387363\n\
      4330777059\n");

  Ok(())
}