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

Side by Side Diff: sdk/lib/_internal/pub_generated/test/hosted/remove_removed_transitive_dependency_test.dart

Issue 887223007: Revert "Use native async/await support in pub." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
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 library pub_tests; 5 library pub_tests;
6 6
7 import '../descriptor.dart' as d; 7 import '../descriptor.dart' as d;
8 import '../test_pub.dart'; 8 import '../test_pub.dart';
9 9
10 main() { 10 main() {
11 initConfig(); 11 initConfig();
12 12
13 forBothPubGetAndUpgrade((command) { 13 forBothPubGetAndUpgrade((command) {
14 integration("removes a transitive dependency that's no longer depended " 14 integration(
15 "on", () { 15 "removes a transitive dependency that's no longer depended " "on",
16 () {
16 servePackages((builder) { 17 servePackages((builder) {
17 builder.serve("foo", "1.0.0", deps: { 18 builder.serve("foo", "1.0.0", deps: {
18 "shared-dep": "any" 19 "shared-dep": "any"
19 }); 20 });
20 builder.serve("bar", "1.0.0", deps: { 21 builder.serve("bar", "1.0.0", deps: {
21 "shared-dep": "any", 22 "shared-dep": "any",
22 "bar-dep": "any" 23 "bar-dep": "any"
23 }); 24 });
24 builder.serve("shared-dep", "1.0.0"); 25 builder.serve("shared-dep", "1.0.0");
25 builder.serve("bar-dep", "1.0.0"); 26 builder.serve("bar-dep", "1.0.0");
26 }); 27 });
27 28
28 d.appDir({ 29 d.appDir({
29 "foo": "any", 30 "foo": "any",
30 "bar": "any" 31 "bar": "any"
31 }).create(); 32 }).create();
32 33
33 pubCommand(command); 34 pubCommand(command);
34 35
35 d.packagesDir({ 36 d.packagesDir({
36 "foo": "1.0.0", 37 "foo": "1.0.0",
37 "bar": "1.0.0", 38 "bar": "1.0.0",
38 "shared-dep": "1.0.0", 39 "shared-dep": "1.0.0",
39 "bar-dep": "1.0.0", 40 "bar-dep": "1.0.0",
40 }).validate(); 41 }).validate();
41 42
42 d.appDir({"foo": "any"}).create(); 43 d.appDir({
44 "foo": "any"
45 }).create();
43 46
44 pubCommand(command); 47 pubCommand(command);
45 48
46 d.packagesDir({ 49 d.packagesDir({
47 "foo": "1.0.0", 50 "foo": "1.0.0",
48 "bar": null, 51 "bar": null,
49 "shared-dep": "1.0.0", 52 "shared-dep": "1.0.0",
50 "bar-dep": null, 53 "bar-dep": null,
51 }).validate(); 54 }).validate();
52 }); 55 });
53 }); 56 });
54 } 57 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698