| Index: pkg/scheduled_test/lib/descriptor.dart
|
| diff --git a/pkg/scheduled_test/lib/descriptor.dart b/pkg/scheduled_test/lib/descriptor.dart
|
| index 107390fdc8659052aa8eeb97545b8ccd7a2ca755..2ea74643e6ada8b30078eebc2d50fb47bfbe07d4 100644
|
| --- a/pkg/scheduled_test/lib/descriptor.dart
|
| +++ b/pkg/scheduled_test/lib/descriptor.dart
|
| @@ -67,10 +67,12 @@ import 'dart:async';
|
| import 'package:pathos/path.dart' as path;
|
|
|
| import 'scheduled_test.dart';
|
| +import 'src/descriptor/async.dart';
|
| import 'src/descriptor/directory.dart';
|
| import 'src/descriptor/entry.dart';
|
| import 'src/descriptor/file.dart';
|
|
|
| +export 'src/descriptor/async.dart';
|
| export 'src/descriptor/directory.dart';
|
| export 'src/descriptor/entry.dart';
|
| export 'src/descriptor/file.dart';
|
| @@ -96,3 +98,7 @@ File binaryFile(Pattern name, List<int> contents) =>
|
| /// Creates a new [Directory] descriptor with [name] and [contents].
|
| Directory dir(Pattern name, [Iterable<Entry> contents]) =>
|
| new Directory(name, contents == null ? <Entry>[] : contents);
|
| +
|
| +/// Creates a new descriptor wrapping a [Future]. This descriptor forwards all
|
| +/// asynchronous operations to the result of [future].
|
| +Async async(Future<Entry> future) => new Async(future);
|
|
|