scheduled_test 0.11.1 scheduled_test: ^0.11.1 copied to clipboard
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 [...]
0.11.1 #
- Add a top-level
tearDown
function.
0.11.0+7 #
- A
nothing()
descriptor will fail if a broken symlink is present.
0.11.0+6 #
- Use
http_multi_server
to bind to both the IPv4 and IPv6 loopback addresses for scheduled_test.
0.11.0+5 #
- Widen the version constraint for
stack_trace
.
0.11.0+4 #
-
Added
README.md
with content fromlib/scheduled_test.dart
. -
Made changes to
test/metatest.dart
related to outstanding issues.
0.11.0+3 #
- Support
v0.11.0
ofunittest
.
0.11.0+1 #
- Support
v0.5.0
ofshelf
.
0.11.0 #
-
ScheduledServer.handle
now takes ashelf.Handler
rather than a custom handler class. -
The body of a
test()
or asetUp()
call may now return a Future. This was already supported by theunittest
package. The Future is passed to awrapFuture
call.
0.10.1+1 #
- Updated
http
version constraint from">=0.9.0 <0.10.0"
to">=0.9.0 <0.11.0"
0.10.1 #
-
Add a
StreamMatcher.hasMatch
method. -
The
consumeThrough
andconsumeWhile
matchers forScheduledStream
now takeStreamMatcher
s as well as normalMatcher
s.
0.10.0 #
-
Convert
ScheduledProcess
to exposestdout
andstderr
asScheduledStream
s. -
Add a
consumeWhile
matcher forScheduledStream
.