OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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/descriptor.dart' as d; | 5 import 'package:scheduled_test/descriptor.dart' as d; |
6 import 'package:scheduled_test/scheduled_test.dart'; | 6 import 'package:scheduled_test/scheduled_test.dart'; |
7 | 7 |
8 import '../metatest.dart'; | 8 import '../metatest.dart'; |
9 import 'utils.dart'; | 9 import 'utils.dart'; |
10 | 10 |
11 String sandbox; | 11 String sandbox; |
12 | 12 |
13 void main(List<String> args, message) { | 13 void main(_, message) { |
14 metaTestInit(message); | 14 initMetatest(message); |
15 | 15 |
16 setUpTimeout(); | 16 setUpTimeout(); |
17 | 17 |
18 expectTestsPass("pattern().validate() succeeds if there's a file matching " | 18 expectTestsPass("pattern().validate() succeeds if there's a file matching " |
19 "the pattern and the child entry", () { | 19 "the pattern and the child entry", () { |
20 test('test', () { | 20 test('test', () { |
21 scheduleSandbox(); | 21 scheduleSandbox(); |
22 | 22 |
23 d.file('foo', 'blap').create(); | 23 d.file('foo', 'blap').create(); |
24 | 24 |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 expect(errors.single, new isInstanceOf<ScheduleError>()); | 154 expect(errors.single, new isInstanceOf<ScheduleError>()); |
155 expect(errors.single.error.toString(), matches( | 155 expect(errors.single.error.toString(), matches( |
156 r"^Multiple valid entries found in '[^']+' matching " | 156 r"^Multiple valid entries found in '[^']+' matching " |
157 r"\/f\.\./:\n" | 157 r"\/f\.\./:\n" |
158 r"\* faa\n" | 158 r"\* faa\n" |
159 r"\* fee\n" | 159 r"\* fee\n" |
160 r"\* foo$")); | 160 r"\* foo$")); |
161 }); | 161 }); |
162 }, passing: ['test 2']); | 162 }, passing: ['test 2']); |
163 } | 163 } |
OLD | NEW |