Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: test/pub_uploader_test.dart

Issue 1153643002: Use "package:" imports for pub. (Closed) Base URL: git@github.com:dart-lang/pub_test@master
Patch Set: Code review changes Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/pub_test.dart ('k') | test/pubspec_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library pub_uploader_test; 5 library pub_uploader_test;
6 6
7 import 'dart:convert'; 7 import 'dart:convert';
8 8
9 import 'package:pub/src/exit_codes.dart' as exit_codes;
10 import 'package:pub/src/utils.dart';
9 import 'package:scheduled_test/scheduled_process.dart'; 11 import 'package:scheduled_test/scheduled_process.dart';
10 import 'package:scheduled_test/scheduled_server.dart'; 12 import 'package:scheduled_test/scheduled_server.dart';
11 import 'package:scheduled_test/scheduled_test.dart'; 13 import 'package:scheduled_test/scheduled_test.dart';
12 import 'package:shelf/shelf.dart' as shelf; 14 import 'package:shelf/shelf.dart' as shelf;
13 15
14 import '../lib/src/exit_codes.dart' as exit_codes;
15 import '../lib/src/utils.dart';
16 import 'descriptor.dart' as d; 16 import 'descriptor.dart' as d;
17 import 'test_pub.dart'; 17 import 'test_pub.dart';
18 18
19 final USAGE_STRING = ''' 19 final USAGE_STRING = '''
20 Manage uploaders for a package on pub.dartlang.org. 20 Manage uploaders for a package on pub.dartlang.org.
21 21
22 Usage: pub uploader [options] {add/remove} <email> 22 Usage: pub uploader [options] {add/remove} <email>
23 -h, --help Print this usage information. 23 -h, --help Print this usage information.
24 --server The package server on which the package is hosted. 24 --server The package server on which the package is hosted.
25 (defaults to "https://pub.dartlang.org") 25 (defaults to "https://pub.dartlang.org")
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 160
161 server.handle('DELETE', '/api/packages/pkg/uploaders/email', 161 server.handle('DELETE', '/api/packages/pkg/uploaders/email',
162 (request) => new shelf.Response.ok("{not json")); 162 (request) => new shelf.Response.ok("{not json"));
163 163
164 pub.stderr.expect(emitsLines( 164 pub.stderr.expect(emitsLines(
165 'Invalid server response:\n' 165 'Invalid server response:\n'
166 '{not json')); 166 '{not json'));
167 pub.shouldExit(1); 167 pub.shouldExit(1);
168 }); 168 });
169 } 169 }
OLDNEW
« no previous file with comments | « test/pub_test.dart ('k') | test/pubspec_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698