| 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 'dart:async'; | 5 import 'dart:async'; |
| 6 import 'dart:io'; | 6 import 'dart:io'; |
| 7 | 7 |
| 8 import 'package:pathos/path.dart' as path; | 8 import 'package:pathos/path.dart' as path; |
| 9 import 'package:scheduled_test/descriptor.dart' as d; | 9 import 'package:scheduled_test/descriptor.dart' as d; |
| 10 import 'package:scheduled_test/scheduled_test.dart'; | 10 import 'package:scheduled_test/scheduled_test.dart'; |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 expect(errors.length, equals(1)); | 119 expect(errors.length, equals(1)); |
| 120 expect(errors.first.error, | 120 expect(errors.first.error, |
| 121 matches(r"^Directory not found: '[^']+[\\/]dir'\.$")); | 121 matches(r"^Directory not found: '[^']+[\\/]dir'\.$")); |
| 122 }); | 122 }); |
| 123 }, passing: ['test 2']); | 123 }, passing: ['test 2']); |
| 124 | 124 |
| 125 expectTestsPass("async().load() fails", () { | 125 expectTestsPass("async().load() fails", () { |
| 126 test('test', () { | 126 test('test', () { |
| 127 scheduleSandbox(); | 127 scheduleSandbox(); |
| 128 | 128 |
| 129 expect(d.async(new Future.immediate(d.file('name.txt'))) | 129 expect(d.async(new Future.value(d.file('name.txt'))) |
| 130 .load('path').toList(), | 130 .load('path').toList(), |
| 131 throwsA(equals("AsyncDescriptors don't support load()."))); | 131 throwsA(equals("AsyncDescriptors don't support load()."))); |
| 132 }); | 132 }); |
| 133 }); | 133 }); |
| 134 | 134 |
| 135 expectTestsPass("async().read() fails", () { | 135 expectTestsPass("async().read() fails", () { |
| 136 test('test', () { | 136 test('test', () { |
| 137 scheduleSandbox(); | 137 scheduleSandbox(); |
| 138 | 138 |
| 139 expect(d.async(new Future.immediate(d.file('name.txt'))).read().toList(), | 139 expect(d.async(new Future.value(d.file('name.txt'))).read().toList(), |
| 140 throwsA(equals("AsyncDescriptors don't support read()."))); | 140 throwsA(equals("AsyncDescriptors don't support read()."))); |
| 141 }); | 141 }); |
| 142 }); | 142 }); |
| 143 } | 143 } |
| OLD | NEW |