Add an integration test

This commit is contained in:
Aleksey Kladov 2018-09-01 20:21:11 +03:00
parent e8515fecd7
commit 541170420b
9 changed files with 266 additions and 16 deletions

View file

@ -11,11 +11,13 @@ use walkdir::WalkDir;
use Result;
#[derive(Debug)]
pub struct FileEvent {
pub path: PathBuf,
pub kind: FileEventKind,
}
#[derive(Debug)]
pub enum FileEventKind {
Add(String),
#[allow(unused)]