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

vmware-archive/cedar-recipes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.