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

Unified Diff: pkg/scheduled_test/lib/src/descriptor/nothing_descriptor.dart

Issue 812253002: Delete a bunch of packages that are now on GitHub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Un-delete http Created 6 years 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
Index: pkg/scheduled_test/lib/src/descriptor/nothing_descriptor.dart
diff --git a/pkg/scheduled_test/lib/src/descriptor/nothing_descriptor.dart b/pkg/scheduled_test/lib/src/descriptor/nothing_descriptor.dart
deleted file mode 100644
index a60840fbc9c4f13166d5162db4f16e161d8448fa..0000000000000000000000000000000000000000
--- a/pkg/scheduled_test/lib/src/descriptor/nothing_descriptor.dart
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-library descriptor.nothing;
-
-import 'dart:async';
-import 'dart:io';
-
-import 'package:path/path.dart' as path;
-
-import '../../descriptor.dart';
-import '../../scheduled_test.dart';
-import '../utils.dart';
-
-/// A descriptor that validates that no file exists with the given name.
-/// Creating this descriptor is a no-op and loading from it is invalid.
-class NothingDescriptor extends Descriptor {
- NothingDescriptor(String name)
- : super(name);
-
- Future create([String parent]) => new Future.value();
-
- Future validate([String parent]) => schedule(() => validateNow(parent),
- "validating '$name' doesn't exist");
-
- Future validateNow([String parent]) => syncFuture(() {
- if (parent == null) parent = defaultRoot;
- var fullPath = path.join(parent, name);
- if (new File(fullPath).existsSync()) {
- fail("Expected nothing to exist at '$fullPath', but found a file.");
- } else if (new Directory(fullPath).existsSync()) {
- fail("Expected nothing to exist at '$fullPath', but found a directory.");
- } else if (new Link(fullPath).existsSync()) {
- fail("Expected nothing to exist at '$fullPath', but found a link.");
- } else {
- return;
- }
- });
-
- String describe() => "nothing at '$name'";
-}

Powered by Google App Engine
This is Rietveld 408576698