- Notifications
You must be signed in to change notification settings - Fork510
kiwi-bdd/Kiwi
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Kiwi is a Behavior Driven Development library for iOS development.The goal is to provide a BDD library that is exquisitely simple to setup and use.
The idea behind Kiwi is to have tests that are more readable than what is possible with the bundled test framework.
Tests (or rather specs) are written in Objective-C and run within the comfort of Xcode to provide a test environment that is as unobtrusive and seamless as possible in terms of running tests and error reporting.
Specs look like this:
describe(@"Team", ^{context(@"when newly created", ^{it(@"has a name", ^{id team = [Teamteam]; [[team.nameshould]equal:@"Black Hawks"]; });it(@"has 11 players", ^{id team = [Teamteam]; [[[teamshould]have:11]players]; }); });});
TheKiwi Wiki is the official documentation source.
To install viaCocoaPods, add this to yourPodfile
:
pod"Kiwi"
Or viaCarthage, add this toCartfile.private
:
github "kiwi-bdd/Kiwi"
For all the questions / suggestions you have, that aren't bug reports please use ourGoogle Group