Add FIXME to file reading test

This commit is contained in:
Christian Poveda 2019-09-25 11:12:46 -05:00
parent 01f64616ad
commit bdaa90ceb2

View File

@ -5,6 +5,7 @@ use std::fs::File;
use std::io::Read;
fn main() {
// FIXME: create the file and delete it when `rm` is implemented.
let mut file = File::open("./tests/hello.txt").unwrap();
let mut contents = String::new();
file.read_to_string(&mut contents).unwrap();