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

Side by Side Diff: test/package_list_files_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
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 packages_list_files_test; 5 library packages_list_files_test;
6 6
7 import 'package:path/path.dart' as path; 7 import 'package:path/path.dart' as path;
8 import 'package:pub/src/entrypoint.dart';
9 import 'package:pub/src/io.dart';
10 import 'package:pub/src/system_cache.dart';
8 import 'package:scheduled_test/scheduled_test.dart'; 11 import 'package:scheduled_test/scheduled_test.dart';
9 12
10 import '../lib/src/entrypoint.dart';
11 import '../lib/src/io.dart';
12 import '../lib/src/system_cache.dart';
13 import 'descriptor.dart' as d; 13 import 'descriptor.dart' as d;
14 import 'test_pub.dart'; 14 import 'test_pub.dart';
15 15
16 String root; 16 String root;
17 Entrypoint entrypoint; 17 Entrypoint entrypoint;
18 18
19 main() { 19 main() {
20 initConfig(); 20 initConfig();
21 21
22 group('not in a git repo', () { 22 group('not in a git repo', () {
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 unorderedEquals([ 224 unorderedEquals([
225 path.join(root, 'packages', 'subfile1.txt'), 225 path.join(root, 'packages', 'subfile1.txt'),
226 path.join(root, 'packages', 'subfile2.txt'), 226 path.join(root, 'packages', 'subfile2.txt'),
227 path.join(root, 'packages', 'subsubdir', 'subsubfile1.txt'), 227 path.join(root, 'packages', 'subsubdir', 'subsubfile1.txt'),
228 path.join(root, 'packages', 'subsubdir', 'subsubfile2.txt') 228 path.join(root, 'packages', 'subsubdir', 'subsubfile2.txt')
229 ])); 229 ]));
230 }); 230 });
231 }); 231 });
232 }); 232 });
233 } 233 }
OLDNEW
« no previous file with comments | « test/oauth2/with_a_server_rejected_refresh_token_authenticates_again_test.dart ('k') | test/preprocess_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698