| OLD | NEW |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 library pub_tests; | 1 library pub_tests; |
| 6 | |
| 7 import '../../descriptor.dart' as d; | 2 import '../../descriptor.dart' as d; |
| 8 import '../../test_pub.dart'; | 3 import '../../test_pub.dart'; |
| 9 | |
| 10 main() { | 4 main() { |
| 11 initConfig(); | 5 initConfig(); |
| 12 integration("does not show how many newer versions are available for " | 6 integration( |
| 13 "packages that are locked and not being upgraded", () { | 7 "does not show how many newer versions are available for " |
| 8 "packages that are locked and not being upgraded", |
| 9 () { |
| 14 servePackages((builder) { | 10 servePackages((builder) { |
| 15 builder.serve("a", "1.0.0"); | 11 builder.serve("a", "1.0.0"); |
| 16 builder.serve("b", "1.0.0"); | 12 builder.serve("b", "1.0.0"); |
| 17 builder.serve("c", "2.0.0"); | 13 builder.serve("c", "2.0.0"); |
| 18 }); | 14 }); |
| 19 | |
| 20 d.appDir({ | 15 d.appDir({ |
| 21 "a": "any" | 16 "a": "any" |
| 22 }).create(); | 17 }).create(); |
| 23 | |
| 24 // One dependency changed. | |
| 25 pubUpgrade(output: new RegExp(r"Changed 1 dependency!$")); | 18 pubUpgrade(output: new RegExp(r"Changed 1 dependency!$")); |
| 26 | |
| 27 // Remove one and add two. | |
| 28 d.appDir({ | 19 d.appDir({ |
| 29 "b": "any", | 20 "b": "any", |
| 30 "c": "any" | 21 "c": "any" |
| 31 }).create(); | 22 }).create(); |
| 32 | |
| 33 pubUpgrade(output: new RegExp(r"Changed 3 dependencies!$")); | 23 pubUpgrade(output: new RegExp(r"Changed 3 dependencies!$")); |
| 34 | |
| 35 // Don't change anything. | |
| 36 pubUpgrade(output: new RegExp(r"No dependencies changed.$")); | 24 pubUpgrade(output: new RegExp(r"No dependencies changed.$")); |
| 37 }); | 25 }); |
| 38 } | 26 } |
| OLD | NEW |