Browse Source

Add the detection of ChangeKind::Sass to tests

index-subcmd
Thomas Vincent 6 years ago
parent
commit
78a3602454
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      src/cmd/serve.rs

+ 4
- 0
src/cmd/serve.rs 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 {


Loading…
Cancel
Save