Introduction to the Kiwi test framework
New York iOS Developer Meetup 3/20/12
This project is a working example of the Kiwi setup guide at https://github.com/allending/Kiwi/wiki/Guide:-Up-and-Running-with-Kiwi
Useful links
Repo - https://github.com/allending/Kiwi
Wiki - https://github.com/allending/Kiwi/wiki
Book - Test Driving iOS Development with Kiwi by Daniel H Steinberg (http://dimsumthinking.com/2012/02/23/using-kiwi/)
Book URL - http://editorscut.com/Books/001kiwi/001kiwi-details.html
Book Examples - https://github.com/editorscut/ec001-iOS-Testing-With-Kiwi
RSpec - http://rspec.info/
Adding the Kiwi submodule
To make sure that the Kiwi submodule is downloaded, we initialize the submodule(s) with the following command:
$ git submodule init
Then we need to run the update in order to pull down the files:
$ git submodule update
Refer to this tutorial if you need further assistance:
http://chrisjean.com/2009/04/20/git-submodules-adding-using-removing-and-updating/