summary refs log tree commit diff
path: root/08/tests/main.rs
blob: 0d8f9bac1ed0abd17b79eba8a2957e1ab8bcc71f (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_08")?;

  command.arg("input");
  command.assert().success().stdout(
      "255\n\
      982158\n");

  Ok(())
}