blob: 321e9542e75426d9e8e8ec9846d0fd55db42de34 [file] [log] [blame]
// Copyright (c) 2015, 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() {
// Regression test for issue 22194.
test(
'gets a dependency with broken dev dependencies from a pub '
'server', () async {
await servePackages((builder) {
builder.serve("foo", "1.2.3", pubspec: {
"dev_dependencies": {
"busted": {"not a real source": null}
}
});
});
await d.appDir({"foo": "1.2.3"}).create();
await pubGet();
await d.cacheDir({"foo": "1.2.3"}).validate();
await d.appPackagesFile({"foo": "1.2.3"}).validate();
});
}