blob: 4a4658c6ad1dd5c9bfaa8a3a1699f7d8cf0c899a [file] [log] [blame]
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
library pub_tests;
import 'dart:io';
import '../../descriptor.dart' as d;
import '../../test_pub.dart';
main() {
integration("removes a transitive dependency that's no longer depended "
"on", () {
servePackages([
packageMap("foo", "1.0.0", [dependencyMap("shared-dep")]),
packageMap("bar", "1.0.0", [
dependencyMap("shared-dep"),
dependencyMap("bar-dep")
]),
packageMap("shared-dep", "1.0.0"),
packageMap("bar-dep", "1.0.0")
]);
d.appDir([dependencyMap("foo"), dependencyMap("bar")]).create();
schedulePub(args: ['update'],
output: new RegExp(r"Dependencies updated!$"));
d.packagesDir({
"foo": "1.0.0",
"bar": "1.0.0",
"shared-dep": "1.0.0",
"bar-dep": "1.0.0",
}).validate();
d.appDir([dependencyMap("foo")]).create();
schedulePub(args: ['update'],
output: new RegExp(r"Dependencies updated!$"));
d.packagesDir({
"foo": "1.0.0",
"bar": null,
"shared-dep": "1.0.0",
"bar-dep": null,
}).validate();
});
}