| 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 'dart:io'; | |
| 8 | |
| 9 import '../../descriptor.dart' as d; | 7 import '../../descriptor.dart' as d; |
| 10 import '../../test_pub.dart'; | 8 import '../../test_pub.dart'; |
| 11 | 9 |
| 12 main() { | 10 main() { |
| 13 initConfig(); | 11 initConfig(); |
| 14 integration("updates a locked package's dependers in order to get it to max " | 12 integration("updates a locked package's dependers in order to get it to max " |
| 15 "version", () { | 13 "version", () { |
| 16 servePackages([ | 14 servePackages([ |
| 17 packageMap("foo", "1.0.0", {"bar": "<2.0.0"}), | 15 packageMap("foo", "1.0.0", {"bar": "<2.0.0"}), |
| 18 packageMap("bar", "1.0.0") | 16 packageMap("bar", "1.0.0") |
| (...skipping 14 matching lines...) Expand all Loading... |
| 33 ]); | 31 ]); |
| 34 | 32 |
| 35 pubUpdate(args: ['bar']); | 33 pubUpdate(args: ['bar']); |
| 36 | 34 |
| 37 d.packagesDir({ | 35 d.packagesDir({ |
| 38 "foo": "2.0.0", | 36 "foo": "2.0.0", |
| 39 "bar": "2.0.0" | 37 "bar": "2.0.0" |
| 40 }).validate(); | 38 }).validate(); |
| 41 }); | 39 }); |
| 42 } | 40 } |
| OLD | NEW |