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 lock_file_test; |
6 | 6 |
7 import 'package:pub/src/ascii_tree.dart' as tree; | 7 import 'package:pub/src/ascii_tree.dart' as tree; |
8 import 'package:pub/src/utils.dart'; | |
9 import 'package:test/test.dart'; | 8 import 'package:test/test.dart'; |
10 | 9 |
11 main() { | 10 main() { |
12 group('tree.fromFiles', () { | 11 group('tree.fromFiles', () { |
13 test('no files', () { | 12 test('no files', () { |
14 expect(tree.fromFiles([]), equals("")); | 13 expect(tree.fromFiles([]), equals("")); |
15 }); | 14 }); |
16 | 15 |
17 test('up to ten files in one directory are shown', () { | 16 test('up to ten files in one directory are shown', () { |
18 var files = [ | 17 var files = [ |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 |-- g.dart | 235 |-- g.dart |
237 |-- h.dart | 236 |-- h.dart |
238 |-- i.dart | 237 |-- i.dart |
239 |-- j.dart | 238 |-- j.dart |
240 |-- k.dart | 239 |-- k.dart |
241 '-- l.dart | 240 '-- l.dart |
242 """)); | 241 """)); |
243 }); | 242 }); |
244 | 243 |
245 } | 244 } |
OLD | NEW |