OLD | NEW |
| (Empty) |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 library pub_tests; | |
6 | |
7 import 'dart:io'; | |
8 | |
9 import '../../descriptor.dart' as d; | |
10 import '../../test_pub.dart'; | |
11 | |
12 main() { | |
13 initConfig(); | |
14 integration("removes a dependency that's been removed from the pubspec", () { | |
15 servePackages([ | |
16 packageMap("foo", "1.0.0"), | |
17 packageMap("bar", "1.0.0") | |
18 ]); | |
19 | |
20 d.appDir([dependencyMap("foo"), dependencyMap("bar")]).create(); | |
21 | |
22 schedulePub(args: ['install'], | |
23 output: new RegExp(r"Dependencies installed!$")); | |
24 | |
25 d.packagesDir({ | |
26 "foo": "1.0.0", | |
27 "bar": "1.0.0" | |
28 }).validate(); | |
29 | |
30 d.appDir([dependencyMap("foo")]).create(); | |
31 | |
32 schedulePub(args: ['install'], | |
33 output: new RegExp(r"Dependencies installed!$")); | |
34 | |
35 d.packagesDir({ | |
36 "foo": "1.0.0", | |
37 "bar": null | |
38 }).validate(); | |
39 }); | |
40 } | |
OLD | NEW |