ribs_test_rill
Test matchers for ribs_rill streams.
Provides producesError, producesInOrder, producesNothing, producesOnly, producesSameAs, and producesUnordered matchers.
Functions
| Function | Description |
|---|---|
| producesError | Matches a Rill that fails with an error satisfying matcher. |
| producesInOrder | Matches a Rill that emits elements in the exact order given by expected. |
| producesNothing | Matches a Rill that succeeds without emitting any elements. |
| producesOnly<A> | Matches a Rill that emits exactly the single element a. |
| producesSameAs<A> | Matches a Rill that produces the same outcome (success, error, or cancelation) and the same elements as expected. |
| producesUnordered | Matches a Rill that emits the same elements as expected in any order. |