| 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; | |
| 6 | |
| 7 import 'package:path/path.dart' as p; | 5 import 'package:path/path.dart' as p; |
| 8 import 'package:pub/src/entrypoint.dart'; | 6 import 'package:pub/src/entrypoint.dart'; |
| 9 import 'package:pub/src/io.dart'; | 7 import 'package:pub/src/io.dart'; |
| 10 import 'package:pub/src/system_cache.dart'; | 8 import 'package:pub/src/system_cache.dart'; |
| 11 import 'package:scheduled_test/scheduled_test.dart'; | 9 import 'package:scheduled_test/scheduled_test.dart'; |
| 12 | 10 |
| 13 import 'descriptor.dart' as d; | 11 import 'descriptor.dart' as d; |
| 14 import 'test_pub.dart'; | 12 import 'test_pub.dart'; |
| 15 | 13 |
| 16 String root; | 14 String root; |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 unorderedEquals([ | 257 unorderedEquals([ |
| 260 p.join(root, 'packages', 'subfile1.txt'), | 258 p.join(root, 'packages', 'subfile1.txt'), |
| 261 p.join(root, 'packages', 'subfile2.txt'), | 259 p.join(root, 'packages', 'subfile2.txt'), |
| 262 p.join(root, 'packages', 'subsubdir', 'subsubfile1.txt'), | 260 p.join(root, 'packages', 'subsubdir', 'subsubfile1.txt'), |
| 263 p.join(root, 'packages', 'subsubdir', 'subsubfile2.txt') | 261 p.join(root, 'packages', 'subsubdir', 'subsubfile2.txt') |
| 264 ])); | 262 ])); |
| 265 }); | 263 }); |
| 266 }); | 264 }); |
| 267 }); | 265 }); |
| 268 } | 266 } |
| OLD | NEW |