Skip to content

Latest commit

 

History

History
44 lines (26 loc) · 1.13 KB

README.md

File metadata and controls

44 lines (26 loc) · 1.13 KB

Build Status

RxNimble

Nimble extensions that making unit testing with RxSwift easier 🎉

Why

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) == 42

With RxNimble, we've added Nimble extension for Observables, so the code above can be rewritten as:

expect(observable).first == 42

Nice.

Installation

Add to your podfile:

pod 'RxNimble'

And pod install and that's it!

Known Issues

Very very very rarely the Swift compiler gets confused about the different types and you need to use the original RxBlocking code.

License

MIT ofc.

Give yourself a high five