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

  command.arg("input");
  command.assert().success().stdout("25788\n3902565915559\n");

  Ok(())
}