Nimble extensions that making unit testing with RxSwift easier 🎉
RxSwift includes a really nifty little library called RxBlocking which provides convenience functions for peeking in on Observable instances. Check is a blocking call, hence the name.
But writing code to check an Observable's value is sooooo tedious:
let result = try! observable.toBlocking().first()
expect(result) == 42With RxNimble, we've added Nimble extension for Observables, so the code above can be rewritten as:
expect(observable).first == 42Nice.
Add to your podfile:
pod 'RxNimble'And pod install and that's it!
Very very very rarely the Swift compiler gets confused about the different types and you need to use the original RxBlocking code.
MIT ofc.
