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

Side by Side Diff: sdk/lib/_internal/pub_generated/test/global/binstubs/name_collision_with_overwrite_test.dart

Issue 896623005: Use native async/await support in pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 5 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
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.
4
5 import 'package:scheduled_test/scheduled_stream.dart';
6 import 'package:scheduled_test/scheduled_test.dart';
7
8 import '../../descriptor.dart' as d;
9 import '../../test_pub.dart';
10
11 main() {
12 initConfig();
13 integration("overwrites an existing binstub if --overwrite is passed", () {
14 d.dir("foo", [d.pubspec({
15 "name": "foo",
16 "executables": {
17 "foo": "foo",
18 "collide1": "foo",
19 "collide2": "foo"
20 }
21 }),
22 d.dir("bin", [d.file("foo.dart", "main() => print('ok');")])]).create( );
23
24 d.dir("bar", [d.pubspec({
25 "name": "bar",
26 "executables": {
27 "bar": "bar",
28 "collide1": "bar",
29 "collide2": "bar"
30 }
31 }),
32 d.dir("bin", [d.file("bar.dart", "main() => print('ok');")])]).create( );
33
34 schedulePub(args: ["global", "activate", "-spath", "../foo"]);
35
36 var pub =
37 startPub(args: ["global", "activate", "-spath", "../bar", "--overwrite"] );
38 pub.stdout.expect(
39 consumeThrough("Installed executables bar, collide1 and collide2."));
40 pub.stderr.expect("Replaced collide1 previously installed from foo.");
41 pub.stderr.expect("Replaced collide2 previously installed from foo.");
42 pub.shouldExit();
43
44 d.dir(
45 cachePath,
46 [
47 d.dir(
48 "bin",
49 [
50 d.matcherFile(binStubName("foo"), contains("foo:foo")),
51 d.matcherFile(binStubName("bar"), contains("bar:bar")),
52 d.matcherFile(binStubName("collide1"), contains("bar:bar")),
53 d.matcherFile(binStubName("collide2"), contains("bar:bar"))] )]).validate();
54 });
55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698