CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ | 
| LangLanguage | Obj-CObjective C | 
| License | MIT | 
| ReleasedLast Release | Apr 2016 | 
Maintained by Orta Therox.
| Depends on: | |
| Quick | >= 0 | 
| Nimble | >= 0 | 
It's great that you can run both Quick and Nimble separately, however that does come with a downside. One of Rspec's great features that helps me catch bugs in my tests is that it will raise an error if a test does not run any expectations.
This Pod bridges Quick and Nimble, and creates a contract between the two. which enforces that you will use Nimble matchers inside every Quick test.
The code is short, well commented, but a little bit esoteric. You'd probably enjoy reading it.
Here's a test suite with two tests:
import Quick
import Nimble
class VigilentSpec: QuickSpec {
    override func spec() {
        it("This test will pass") {
        }
        it("This should pass too") {
            expect("Tests") == "Tests"
        }
    }
}Simpley by include the Pod "Vigilant" in your Podfile, you will see a message like this in your console:
Test Case '-[Vigilant_Tests.VigilentSpec This_test_will_pass]' started.
2016-04-10 16:07:29.026 Vigilant_Example[20344:1112445] 
Vigilent: Did not see any `expect`s in the test: 'This test will pass'
Test Case '-[Vigilant_Tests.VigilentSpec This_test_will_pass]' passed (0.013 seconds).
Making it easy to see what tests are running without any expects being called.
Maybe you want to go all out and enforce that every test have expectations, well, this Pod 
also provides a way to do that. In your Testing AppDelegate, call the Vigilent class's function
startExpecting to cause assertions instead of logs.
To run the example project, run pod try Vigilant.
Vigilant is available through CocoaPods. To install it, simply add the following line to your Podfile in a test target:
pod "Vigilant"Once SwiftPM becomes useful I'll look into supporting that too.
Orta Therox, [email protected]
Vigilant is available under the MIT license. See the LICENSE file for more info.