| 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('resolves version constraints from a pub server', () { | 12 integration('resolves version constraints from a pub server', () { |
| 15 servePackages([ | 13 servePackages([ |
| 16 packageMap("foo", "1.2.3", {"baz": ">=2.0.0"}), | 14 packageMap("foo", "1.2.3", {"baz": ">=2.0.0"}), |
| 17 packageMap("bar", "2.3.4", {"baz": "<3.0.0"}), | 15 packageMap("bar", "2.3.4", {"baz": "<3.0.0"}), |
| 18 packageMap("baz", "2.0.3"), | 16 packageMap("baz", "2.0.3"), |
| (...skipping 11 matching lines...) Expand all Loading... |
| 30 "baz": "2.0.4" | 28 "baz": "2.0.4" |
| 31 }).validate(); | 29 }).validate(); |
| 32 | 30 |
| 33 d.packagesDir({ | 31 d.packagesDir({ |
| 34 "foo": "1.2.3", | 32 "foo": "1.2.3", |
| 35 "bar": "2.3.4", | 33 "bar": "2.3.4", |
| 36 "baz": "2.0.4" | 34 "baz": "2.0.4" |
| 37 }).validate(); | 35 }).validate(); |
| 38 }); | 36 }); |
| 39 } | 37 } |
| OLD | NEW |