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

Unified Diff: sdk/lib/_internal/pub/test/global/activate/path_does_not_exist_test.dart

Issue 428313004: Support activating packages from local paths. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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
Index: sdk/lib/_internal/pub/test/global/activate/path_does_not_exist_test.dart
diff --git a/sdk/lib/_internal/pub/test/cache/repair/empty_cache_test.dart b/sdk/lib/_internal/pub/test/global/activate/path_does_not_exist_test.dart
similarity index 56%
copy from sdk/lib/_internal/pub/test/cache/repair/empty_cache_test.dart
copy to sdk/lib/_internal/pub/test/global/activate/path_does_not_exist_test.dart
index 9f398b7635f3a481c460620429cfe73db3282b6e..3170c91f55910f90ee492421cf3b278319090833 100644
--- a/sdk/lib/_internal/pub/test/cache/repair/empty_cache_test.dart
+++ b/sdk/lib/_internal/pub/test/global/activate/path_does_not_exist_test.dart
@@ -2,15 +2,13 @@
// 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 pub_tests;
-
import '../../test_pub.dart';
main() {
initConfig();
- integration('does nothing if the cache is empty', () {
- // Repair them.
- schedulePub(args: ["cache", "repair"],
- output: "No packages in cache, so nothing to repair.");
+ integration('fails if path does not exist', () {
+ schedulePub(args: ["global", "activate", "--source", "path", "nope"],
+ error: 'Could not find a file named "pubspec.yaml" in "nope".',
+ exitCode: 1);
});
}

Powered by Google App Engine
This is Rietveld 408576698