aboutsummaryrefslogtreecommitdiff
path: root/implementations
Commit message (Collapse)AuthorAgeFilesLines
* Code review updatesSam Guymer2018-05-202-28/+26
| | | | | | Remove tests sub project, all tests are now in core. Remove TestStreamingBackend, StreamingTest now has the required abstract methods.
* Move backend tests into their projectsSam Guymer2018-05-194-11/+17
| | | | | | | | | | | Instead of having a single project which tests all backends, each backend now implements a http test trait along with a streaming test trait if it supports streaming. The test http server has been moved into its own project and is started automatically before running a backends test. This allows each backend to be tested without the possibility of dependency eviction from another backend or the test http server. It also has the side effect of parallelizing the tests providing a speed up when run with multiple cores.
* Code review updatesSam Guymer2018-05-186-9/+9
|
* Extract MonadAsyncError implementationsSam Guymer2018-05-187-0/+160
Extract MonadAsyncError implementations into their own projects to allow reuse by multiple backends.