| OLD | NEW |
| 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(); | |
| 12 | |
| 13 forBothPubGetAndUpgrade((command) { | 11 forBothPubGetAndUpgrade((command) { |
| 14 integration("removes a transitive dependency that's no longer depended " | 12 integration("removes a transitive dependency that's no longer depended " |
| 15 "on", () { | 13 "on", () { |
| 16 servePackages((builder) { | 14 servePackages((builder) { |
| 17 builder.serve("foo", "1.0.0", deps: { | 15 builder.serve("foo", "1.0.0", deps: { |
| 18 "shared-dep": "any" | 16 "shared-dep": "any" |
| 19 }); | 17 }); |
| 20 builder.serve("bar", "1.0.0", deps: { | 18 builder.serve("bar", "1.0.0", deps: { |
| 21 "shared-dep": "any", | 19 "shared-dep": "any", |
| 22 "bar-dep": "any" | 20 "bar-dep": "any" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 45 | 43 |
| 46 d.packagesDir({ | 44 d.packagesDir({ |
| 47 "foo": "1.0.0", | 45 "foo": "1.0.0", |
| 48 "bar": null, | 46 "bar": null, |
| 49 "shared-dep": "1.0.0", | 47 "shared-dep": "1.0.0", |
| 50 "bar-dep": null, | 48 "bar-dep": null, |
| 51 }).validate(); | 49 }).validate(); |
| 52 }); | 50 }); |
| 53 }); | 51 }); |
| 54 } | 52 } |
| OLD | NEW |