blob: a0446c00ba8eb1144c6fac7abaebca14b7a7f867 [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.
import 'package:test/test.dart';
import '../descriptor.dart' as d;
import '../test_pub.dart';
void main() {
forBothPubGetAndUpgrade((command) {
test("removes a dependency that's removed from the pubspec", () async {
await servePackages()
..serve('foo', '1.0.0')
..serve('bar', '1.0.0');
await d.appDir({'foo': 'any', 'bar': 'any'}).create();
await pubCommand(command);
await d.appPackageConfigFile([
d.packageConfigEntry(name: 'foo', version: '1.0.0'),
d.packageConfigEntry(name: 'bar', version: '1.0.0'),
]).validate();
await d.appDir({'foo': 'any'}).create();
await pubCommand(command);
await d.appPackageConfigFile([
d.packageConfigEntry(name: 'foo', version: '1.0.0'),
]).validate();
});
});
}