Coder Social home page Coder Social logo

carlos7646 / kiwi Goto Github PK

View Code? Open in Web Editor NEW

This project forked from kiwi-bdd/kiwi

0.0 2.0 0.0 13.66 MB

BDD for iOS

License: BSD 3-Clause "New" or "Revised" License

Objective-C 98.99% C 0.28% C++ 0.20% Ruby 0.22% Makefile 0.18% Shell 0.13%

kiwi's Introduction

Simple BDD for iOS

Build Status

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.

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

The best way to get Kiwi is by using CocoaPods. For all the installation details, check out the Wiki

Support

For all the questions / suggestions you have, that aren't bug reports please use our Google Group

kiwi's People

Contributors

allending avatar lukeredpath avatar sharplet avatar modocache avatar stepanhruda avatar eraserhd avatar csky-ios avatar ma11hew28 avatar sgleadow avatar jessedc avatar michaelhackett avatar paulz avatar roustem avatar tibr avatar tonyarnold avatar martica avatar tvon avatar jdewind avatar chrisdevereux avatar camdez avatar blakewatters avatar akashivskyy avatar jerrymarino avatar kristopherjohnson avatar dented42 avatar nachosoto avatar pfransenadb avatar spenrose avatar wezm avatar alloy avatar

Watchers

James Cloos avatar Carlos7646 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.