Index: sdk/lib/_internal/pub/test/downgrade/does_not_show_other_versions_test.dart |
diff --git a/sdk/lib/_internal/pub/test/downgrade/does_not_show_other_versions_test.dart b/sdk/lib/_internal/pub/test/downgrade/does_not_show_other_versions_test.dart |
deleted file mode 100644 |
index 2c49d31e6a13c2c5a0f509d535301c1960ea1bd1..0000000000000000000000000000000000000000 |
--- a/sdk/lib/_internal/pub/test/downgrade/does_not_show_other_versions_test.dart |
+++ /dev/null |
@@ -1,34 +0,0 @@ |
-// Copyright (c) 2013, 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 'package:scheduled_test/scheduled_test.dart'; |
- |
-import '../descriptor.dart' as d; |
-import '../test_pub.dart'; |
- |
-main() { |
- initConfig(); |
- integration("does not show how many other versions are available", () { |
- servePackages((builder) { |
- builder.serve("downgraded", "1.0.0"); |
- builder.serve("downgraded", "2.0.0"); |
- builder.serve("downgraded", "3.0.0-dev"); |
- }); |
- |
- d.appDir({ |
- "downgraded": "3.0.0-dev" |
- }).create(); |
- |
- pubGet(); |
- |
- // Loosen the constraints. |
- d.appDir({ |
- "downgraded": ">=2.0.0" |
- }).create(); |
- |
- pubDowngrade(output: contains("downgraded 2.0.0 (was 3.0.0-dev)")); |
- }); |
-} |