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

Side by Side Diff: utils/tests/pub/pub_lish_test.dart

Issue 12782016: Switch pkg packages, pub, and dartdoc to use package: imports. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes. Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « utils/tests/pub/pub_cache_test.dart ('k') | utils/tests/pub/pub_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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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_lish_test; 5 library pub_lish_test;
6 6
7 import 'dart:io'; 7 import 'dart:io';
8 import 'dart:json' as json; 8 import 'dart:json' as json;
9 9
10 import '../../../pkg/scheduled_test/lib/scheduled_test.dart'; 10 import 'package:scheduled_test/scheduled_test.dart';
11 import '../../../pkg/scheduled_test/lib/scheduled_server.dart'; 11 import 'package:scheduled_test/scheduled_server.dart';
12 12
13 import '../../pub/exit_codes.dart' as exit_codes; 13 import '../../pub/exit_codes.dart' as exit_codes;
14 import '../../pub/io.dart'; 14 import '../../pub/io.dart';
15 import 'descriptor.dart' as d; 15 import 'descriptor.dart' as d;
16 import 'test_pub.dart'; 16 import 'test_pub.dart';
17 17
18 void handleUploadForm(ScheduledServer server, [Map body]) { 18 void handleUploadForm(ScheduledServer server, [Map body]) {
19 server.handle('GET', '/packages/versions/new.json', (request) { 19 server.handle('GET', '/packages/versions/new.json', (request) {
20 return server.url.then((url) { 20 return server.url.then((url) {
21 expect(request.headers.value('authorization'), 21 expect(request.headers.value('authorization'),
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 var server = new ScheduledServer(); 482 var server = new ScheduledServer();
483 var pub = startPublish(server, args: ['--force']); 483 var pub = startPublish(server, args: ['--force']);
484 484
485 pub.shouldExit(0); 485 pub.shouldExit(0);
486 expect(pub.remainingStderr(), completion(contains( 486 expect(pub.remainingStderr(), completion(contains(
487 "Sorry, your package is missing a requirement and can't be " 487 "Sorry, your package is missing a requirement and can't be "
488 "published yet."))); 488 "published yet.")));
489 }); 489 });
490 }); 490 });
491 } 491 }
OLDNEW
« no previous file with comments | « utils/tests/pub/pub_cache_test.dart ('k') | utils/tests/pub/pub_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698