blob: 4a9fd1e759838063747e8cbc8bf953edebe6cb82 [file] [log] [blame]
// Copyright (c) 2014, 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';
main() {
forBothPubGetAndUpgrade((command) {
group("without --packages-dir", () {
test("removes package directories near entrypoints", () async {
await d.dir(appPath, [
d.appPubspec(),
d.dir("packages"),
d.dir("bin/packages"),
d.dir("web/packages"),
d.dir("web/subdir/packages")
]).create();
await pubCommand(command);
await d.dir(appPath, [
d.nothing("packages"),
d.nothing("bin/packages"),
d.nothing("web/packages"),
d.nothing("web/subdir/packages")
]).validate();
});
test(
"doesn't remove package directories that pub wouldn't "
"generate", () async {
await d.dir(appPath, [
d.appPubspec(),
d.dir("packages"),
d.dir("bin/subdir/packages"),
d.dir("lib/packages")
]).create();
await pubCommand(command);
await d.dir(appPath, [
d.nothing("packages"),
d.dir("bin/subdir/packages"),
d.dir("lib/packages")
]).validate();
});
});
});
}