OLD | NEW |
---|---|
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'; | |
8 import 'package:scheduled_test/scheduled_test.dart'; | 9 import 'package:scheduled_test/scheduled_test.dart'; |
9 | 10 |
10 import '../lib/src/entrypoint.dart'; | 11 import 'package:pub/src/io.dart'; |
11 import '../lib/src/io.dart'; | 12 import 'package:pub/src/system_cache.dart'; |
Bob Nystrom
2015/05/22 00:05:17
Move.
nweiz
2015/05/22 00:14:24
Done.
| |
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 Loading... | |
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 } |
OLD | NEW |