OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 import 'package:scheduled_test/scheduled_test.dart'; | 5 import 'package:scheduled_test/scheduled_test.dart'; |
6 | 6 |
7 import '../../descriptor.dart' as d; | 7 import '../../descriptor.dart' as d; |
8 import '../../test_pub.dart'; | 8 import '../../test_pub.dart'; |
9 | 9 |
10 main() { | 10 main() { |
(...skipping 12 matching lines...) Expand all Loading... |
23 """); | 23 """); |
24 | 24 |
25 // Should be in global package cache. | 25 // Should be in global package cache. |
26 d.dir(cachePath, [ | 26 d.dir(cachePath, [ |
27 d.dir('global_packages', [ | 27 d.dir('global_packages', [ |
28 d.matcherFile('foo.lock', contains('1.2.3')) | 28 d.matcherFile('foo.lock', contains('1.2.3')) |
29 ]) | 29 ]) |
30 ]).validate(); | 30 ]).validate(); |
31 }); | 31 }); |
32 } | 32 } |
OLD | NEW |