Chromium Code Reviews

Side by Side Diff: sdk/lib/_internal/pub/test/global/deactivate/remote_package_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, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
nweiz 2014/07/31 20:01:54 Nit: it seems like this should be called hosted_pa
Bob Nystrom 2014/08/04 23:41:51 Done.
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import '../../test_pub.dart'; 5 import '../../test_pub.dart';
6 6
7 main() { 7 main() {
8 initConfig(); 8 initConfig();
9 integration('deactivates an active package', () { 9 integration('deactivates an active hosted package', () {
10 servePackages([ 10 servePackages([
11 packageMap("foo", "1.0.0") 11 packageMap("foo", "1.0.0")
12 ]); 12 ]);
13 13
14 schedulePub(args: ["global", "activate", "foo"]); 14 schedulePub(args: ["global", "activate", "foo"]);
15 15
16 schedulePub(args: ["global", "deactivate", "foo"], 16 schedulePub(args: ["global", "deactivate", "foo"],
17 output: "Deactivated package foo 1.0.0."); 17 output: "Deactivated package foo 1.0.0.");
18 }); 18 });
19 } 19 }
OLDNEW

Powered by Google App Engine