Index: sdk/lib/_internal/pub/test/lish/upload_form_provides_invalid_json_test.dart |
diff --git a/sdk/lib/_internal/pub/test/lish/upload_form_provides_invalid_json_test.dart b/sdk/lib/_internal/pub/test/lish/upload_form_provides_invalid_json_test.dart |
deleted file mode 100644 |
index 60b1f14a5b235792c18de6c1ec3b2177ad294811..0000000000000000000000000000000000000000 |
--- a/sdk/lib/_internal/pub/test/lish/upload_form_provides_invalid_json_test.dart |
+++ /dev/null |
@@ -1,31 +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. |
- |
-import 'package:scheduled_test/scheduled_test.dart'; |
-import 'package:scheduled_test/scheduled_server.dart'; |
-import 'package:shelf/shelf.dart' as shelf; |
- |
-import '../descriptor.dart' as d; |
-import '../test_pub.dart'; |
- |
-main() { |
- initConfig(); |
- setUp(d.validPackage.create); |
- |
- integration('upload form provides invalid JSON', () { |
- var server = new ScheduledServer(); |
- d.credentialsFile(server, 'access token').create(); |
- var pub = startPublish(server); |
- |
- confirmPublish(pub); |
- |
- server.handle('GET', '/api/packages/versions/new', |
- (request) => new shelf.Response.ok('{not json')); |
- |
- pub.stderr.expect(emitsLines( |
- 'Invalid server response:\n' |
- '{not json')); |
- pub.shouldExit(1); |
- }); |
-} |