blob: dfc023d3b78bf7a4e93efe05c749ced87f34bca7 [file] [log] [blame]
use std::{fs,env};
fn main() {
// our source file should be readable
let path = env::var("SOURCE_FILE").unwrap();
let generated_data = fs::read_to_string(&path).unwrap();
assert_eq!(generated_data, "source\n");
// our generated data file should be readable
let path = env::var("GENERATED_DATA").unwrap();
let generated_data = fs::read_to_string(&path).unwrap();
assert_eq!(generated_data, "hello\n");
// and we should be able to read (and thus execute) our tool
let path = env::var("SOME_TOOL").unwrap();
assert_eq!(fs::read(&path).unwrap().is_empty(), false);
}