| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 integration("does not show how many newer versions are available for " | 11 integration("does not show how many newer versions are available for " |
| 13 "packages that are locked and not being upgraded", () { | 12 "packages that are locked and not being upgraded", () { |
| 14 servePackages((builder) { | 13 servePackages((builder) { |
| 15 builder.serve("a", "1.0.0"); | 14 builder.serve("a", "1.0.0"); |
| 16 builder.serve("b", "1.0.0"); | 15 builder.serve("b", "1.0.0"); |
| 17 builder.serve("c", "2.0.0"); | 16 builder.serve("c", "2.0.0"); |
| 18 }); | 17 }); |
| 19 | 18 |
| 20 d.appDir({ | 19 d.appDir({ |
| 21 "a": "any" | 20 "a": "any" |
| 22 }).create(); | 21 }).create(); |
| 23 | 22 |
| 24 // One dependency changed. | 23 // One dependency changed. |
| 25 pubUpgrade(output: new RegExp(r"Changed 1 dependency!$")); | 24 pubUpgrade(output: new RegExp(r"Changed 1 dependency!$")); |
| 26 | 25 |
| 27 // Remove one and add two. | 26 // Remove one and add two. |
| 28 d.appDir({ | 27 d.appDir({ |
| 29 "b": "any", | 28 "b": "any", |
| 30 "c": "any" | 29 "c": "any" |
| 31 }).create(); | 30 }).create(); |
| 32 | 31 |
| 33 pubUpgrade(output: new RegExp(r"Changed 3 dependencies!$")); | 32 pubUpgrade(output: new RegExp(r"Changed 3 dependencies!$")); |
| 34 | 33 |
| 35 // Don't change anything. | 34 // Don't change anything. |
| 36 pubUpgrade(output: new RegExp(r"No dependencies changed.$")); | 35 pubUpgrade(output: new RegExp(r"No dependencies changed.$")); |
| 37 }); | 36 }); |
| 38 } | 37 } |
| OLD | NEW |