use anyhow::Result;
use std::str::from_utf8;
use thinp::file_utils;
use thinp::version::TOOLS_VERSION;
mod common;
use common::*;
use common::test_dir::*;
//------------------------------------------
#[test]
fn accepts_v() -> Result<()> {
    let stdout = thin_restore!("-V").read()?;
    assert_eq!(stdout, TOOLS_VERSION);
    Ok(())
}
#[test]
fn accepts_version() -> Result<()> {
    let stdout = thin_restore!("--version").read()?;
    assert_eq!(stdout, TOOLS_VERSION);
    Ok(())
}
const USAGE: &str = "Usage: thin_restore [options]\nOptions:\n  {-h|--help}\n  {-i|--input} \n  {-o|--output}