| 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 | 12 |
| 15 forBothPubInstallAndUpdate((command) { | 13 forBothPubInstallAndUpdate((command) { |
| 16 integration('updates a package using the cache', () { | 14 integration('updates a package using the cache', () { |
| 17 // Run the server so that we know what URL to use in the system cache. | 15 // Run the server so that we know what URL to use in the system cache. |
| 18 servePackages([]); | 16 servePackages([]); |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 }, includePubspecs: true).create(); | 58 }, includePubspecs: true).create(); |
| 61 | 59 |
| 62 d.appDir({"foo": ">2.0.0"}).create(); | 60 d.appDir({"foo": ">2.0.0"}).create(); |
| 63 | 61 |
| 64 pubCommand(command, args: ['--offline'], error: | 62 pubCommand(command, args: ['--offline'], error: |
| 65 "Package 'foo' has no versions that match >2.0.0 derived from:\n" | 63 "Package 'foo' has no versions that match >2.0.0 derived from:\n" |
| 66 "- 'myapp' depends on version >2.0.0"); | 64 "- 'myapp' depends on version >2.0.0"); |
| 67 }); | 65 }); |
| 68 }); | 66 }); |
| 69 } | 67 } |
| OLD | NEW |