| 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 lock_file_test; | 5 library packages_files_test; |
| 6 | 6 |
| 7 import 'package:path/path.dart' as path; | 7 import 'package:path/path.dart' as path; |
| 8 import 'package:scheduled_test/scheduled_test.dart'; | 8 import 'package:scheduled_test/scheduled_test.dart'; |
| 9 | 9 |
| 10 import '../lib/src/entrypoint.dart'; | 10 import '../lib/src/entrypoint.dart'; |
| 11 import '../lib/src/io.dart'; | 11 import '../lib/src/io.dart'; |
| 12 import '../lib/src/system_cache.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 |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 completion(unorderedEquals([ | 213 completion(unorderedEquals([ |
| 214 path.join(root, 'packages', 'subfile1.txt'), | 214 path.join(root, 'packages', 'subfile1.txt'), |
| 215 path.join(root, 'packages', 'subfile2.txt'), | 215 path.join(root, 'packages', 'subfile2.txt'), |
| 216 path.join(root, 'packages', 'subsubdir', 'subsubfile1.txt'), | 216 path.join(root, 'packages', 'subsubdir', 'subsubfile1.txt'), |
| 217 path.join(root, 'packages', 'subsubdir', 'subsubfile2.txt') | 217 path.join(root, 'packages', 'subsubdir', 'subsubfile2.txt') |
| 218 ]))); | 218 ]))); |
| 219 }); | 219 }); |
| 220 }); | 220 }); |
| 221 }); | 221 }); |
| 222 } | 222 } |
| OLD | NEW |