rook
03/29/2019, 4:28 PMBehaviorDelegate<T>
and I’m struggling to understand how I should mock network error returns. When my endpoints used Rx Single
, I needed to return Single.error(Throwable)
. Do I need to do anything special now that the return type is Deferred<Response<T>>
, or do I just throw?