appmetrica/Kiwi
Simple BDD for iOS
Why?
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 = [Team team];
[[team.name should] equal:@"Black Hawks"];
});
it(@"has 11 players", ^{
id team = [Team team];
[[[team should] have:11] players];
});
});
});Documentation
The Kiwi Wiki is the official documentation source.
Getting it
#### To install via CocoaPods, add this to your Podfile:
pod "Kiwi"Or via Carthage, add this to Cartfile.private:
github "kiwi-bdd/Kiwi"Support
For all the questions / suggestions you have, that aren't bug reports please use our Google Group
Package Metadata
Repository: appmetrica/Kiwi
Stars: 1
Forks: 0
Open issues: 0
Default branch: master
Primary language: objective-c
License: BSD-3-Clause
README: README.md
Fork: yes