Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(803)

Unified Diff: pkg/scheduled_test/pubspec.yaml

Issue 12209073: Add a scheduled test library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Make everything play nicely with the outside world. Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/scheduled_test/pubspec.yaml
diff --git a/pkg/scheduled_test/pubspec.yaml b/pkg/scheduled_test/pubspec.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..10db57630406a6ae28bc9bc275979c5fcfb20a1f
--- /dev/null
+++ b/pkg/scheduled_test/pubspec.yaml
@@ -0,0 +1,13 @@
+name: scheduled_test
+author: "Dart Team <misc@dartlang.org>"
+homepage: http://www.dartlang.org
+description: >
+ A package for writing readable tests of asynchronous behavior.
+
+ This package works by building up a queue of asynchronous tasks called a
+ "schedule", then executing those tasks in order. This allows the tests to
+ read like synchronous, linear code, despite executing asynchronously.
+
+dependencies:
+ unittest: any
+ pathos: ">=0.3.2 <1.0.0"

Powered by Google App Engine
This is Rietveld 408576698