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

Side by Side Diff: sdk/lib/_internal/pub/test/package_files_test.dart

Issue 18356011: Rename "pathos" package to "path". (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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
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 lock_file_test; 5 library lock_file_test;
6 6
7 import 'dart:io'; 7 import 'dart:io';
8 8
9 import 'package:pathos/path.dart' as path; 9 import 'package:path/path.dart' as path;
10 import 'package:scheduled_test/scheduled_test.dart'; 10 import 'package:scheduled_test/scheduled_test.dart';
11 11
12 import '../lib/src/entrypoint.dart'; 12 import '../lib/src/entrypoint.dart';
13 import '../lib/src/io.dart'; 13 import '../lib/src/io.dart';
14 import '../lib/src/system_cache.dart'; 14 import '../lib/src/system_cache.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 var root; 18 var root;
19 var entrypoint; 19 var entrypoint;
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 completion(unorderedEquals([ 215 completion(unorderedEquals([
216 path.join(root, 'packages', 'subfile1.txt'), 216 path.join(root, 'packages', 'subfile1.txt'),
217 path.join(root, 'packages', 'subfile2.txt'), 217 path.join(root, 'packages', 'subfile2.txt'),
218 path.join(root, 'packages', 'subsubdir', 'subsubfile1.txt'), 218 path.join(root, 'packages', 'subsubdir', 'subsubfile1.txt'),
219 path.join(root, 'packages', 'subsubdir', 'subsubfile2.txt') 219 path.join(root, 'packages', 'subsubdir', 'subsubfile2.txt')
220 ]))); 220 ])));
221 }); 221 });
222 }); 222 });
223 }); 223 });
224 } 224 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698