Skip to content
This repository has been archived by the owner on Mar 18, 2020. It is now read-only.

jonah-williams/Kiwi

 
 

Repository files navigation

Simple BDD for iOS

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.

Requirements:

  • Xcode 4.x
  • LLVM compiler recommended

Contributors

Kiwi is open-source and is developed by the community. The full list of Kiwi individual contributors is here.

Why?

The idea behind Kiwi is to have tests that are more readable that 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(@"should have a name", ^{
            id team = [Team team];
            [[team.name should] equal:@"Black Hawks"];
        });

        it(@"should have 11 players", ^{
            id team = [Team team];
            [[[team should] have:11] players];
        });
    });
});

To some of you, this might seem like an abomination. To the rest, read on...

License

Kiwi is open source software. You may freely distribute it under the terms of the license agreement found in License.txt.

Documentation

The Kiwi Wiki is the official documentation source.

Getting it

The best way to get Kiwi is by cloning the git repository: git clone git://github.com/allending/Kiwi.git

About

Simple BDD for iOS - Docs @ Wiki

Resources

License

Stars

Watchers

Forks

Packages

No packages published