Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(603)

Unified Diff: pkg/watcher/test/directory_watcher/windows_test.dart

Issue 313353003: Clean up the Windows watcher. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/watcher/test/directory_watcher/shared.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/watcher/test/directory_watcher/windows_test.dart
diff --git a/pkg/watcher/test/directory_watcher/windows_test.dart b/pkg/watcher/test/directory_watcher/windows_test.dart
index 3e9a854a9f78bb321852e9a5b1cdd0f68d1461b8..6bfb88b44683d0857f54fd8206dedec0d302c386 100644
--- a/pkg/watcher/test/directory_watcher/windows_test.dart
+++ b/pkg/watcher/test/directory_watcher/windows_test.dart
@@ -23,19 +23,5 @@ main() {
expect(new DirectoryWatcher('.'),
new isInstanceOf<WindowsDirectoryWatcher>());
});
-
- test('when the watched directory is moved, removes all files', () {
- writeFile("dir/a.txt");
- writeFile("dir/b.txt");
-
- startWatcher(dir: "dir");
-
- renameDir("dir", "moved_dir");
- createDir("dir");
- inAnyOrder([
- isRemoveEvent("dir/a.txt"),
- isRemoveEvent("dir/b.txt")
- ]);
- });
}
« no previous file with comments | « pkg/watcher/test/directory_watcher/shared.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698