FergalMohan / cedar-recipes

Code for Test Driven iPhone Development with Cedar blog post.

Home Page:http://pivotallabs.com/test-driven-iphone-development-with-cedar/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cedar-recipes

Code for Test Driven iPhone Development with Cedar blog post.

Cedar, an open source BDD testing framework from Pivotal Labs, makes developing test-driven iOS apps quick and easy. The framework provides a large library of matchers so you can start testing right away on a large collection of objects. If you are familiar with RSpec or Jasmine you will immediately recognize the syntax for writing tests.

describe(@"this tutorial", ^{
    it(@"makes setting up Cedar quick and easy", ^{
        yourApp.isAwesome should be_truthy;
    });
});

This is the first title in a series of blog posts that will teach you Cedar. The posts will walk you through creating a simple app to save your favorite recipes.

Read more at pivotallabs.com.

About

Code for Test Driven iPhone Development with Cedar blog post.

http://pivotallabs.com/test-driven-iphone-development-with-cedar/


Languages

Language:Objective-C 74.9%Language:C++ 22.3%Language:Ruby 1.6%Language:Objective-C++ 1.2%