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'; | 7 import 'dart:io'; |
8 | 8 |
9 import '../../descriptor.dart' as d; | |
10 import '../../test_pub.dart'; | 9 import '../../test_pub.dart'; |
11 | 10 |
12 main() { | 11 main() { |
13 integration('updates a locked pub server package with a new incompatible ' | 12 integration('updates a locked pub server package with a new incompatible ' |
14 'constraint', () { | 13 'constraint', () { |
15 servePackages([packageMap("foo", "1.0.0")]); | 14 servePackages([package("foo", "1.0.0")]); |
16 | 15 |
17 d.appDir([dependencyMap("foo")]).create(); | 16 appDir([dependency("foo")]).scheduleCreate(); |
18 | 17 |
19 schedulePub(args: ['install'], | 18 schedulePub(args: ['install'], |
20 output: new RegExp(r"Dependencies installed!$")); | 19 output: new RegExp(r"Dependencies installed!$")); |
21 | 20 |
22 d.packagesDir({"foo": "1.0.0"}).validate(); | 21 packagesDir({"foo": "1.0.0"}).scheduleValidate(); |
23 | 22 |
24 servePackages([packageMap("foo", "1.0.1")]); | 23 servePackages([package("foo", "1.0.1")]); |
25 | 24 |
26 d.appDir([dependencyMap("foo", ">1.0.0")]).create(); | 25 appDir([dependency("foo", ">1.0.0")]).scheduleCreate(); |
27 | 26 |
28 schedulePub(args: ['install'], | 27 schedulePub(args: ['install'], |
29 output: new RegExp(r"Dependencies installed!$")); | 28 output: new RegExp(r"Dependencies installed!$")); |
30 | 29 |
31 d.packagesDir({"foo": "1.0.1"}).validate(); | 30 packagesDir({"foo": "1.0.1"}).scheduleValidate(); |
32 }); | 31 }); |
33 } | 32 } |
OLD | NEW |