blob: fad54008883c90c3b33f7d4fed23a5e89a24f3b2 [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() {
test(
'upgrades a locked pub server package with a new incompatible '
'constraint', () async {
await servePackages((builder) => builder.serve('foo', '1.0.0'));
await d.appDir({'foo': 'any'}).create();
await pubGet();
await d.appPackagesFile({'foo': '1.0.0'}).validate();
globalPackageServer!.add((builder) => builder.serve('foo', '1.0.1'));
await d.appDir({'foo': '>1.0.0'}).create();
await pubGet();
await d.appPackagesFile({'foo': '1.0.1'}).validate();
});
}