Add the detection of ChangeKind::Sass to tests

This commit is contained in:
Thomas Vincent 2017-11-21 00:05:37 +01:00
parent 64ea51b388
commit 78a3602454

View file

@ -296,6 +296,10 @@ mod tests {
(ChangeKind::Content, "/content/posts/hello.md".to_string()),
"/home/vincent/site", Path::new("/home/vincent/site/content/posts/hello.md")
),
(
(ChangeKind::Sass, "/sass/print.scss".to_string()),
"/home/vincent/site", Path::new("/home/vincent/site/sass/print.scss")
)
];
for (expected, pwd, path) in test_cases {