Skip to content
This repository has been archived by the owner on Sep 4, 2018. It is now read-only.
unboxed edited this page Sep 14, 2010 · 9 revisions

iCuke

iCuke makes it easy to do integration testing of iPhone applications with cucumber.

To use it, install the gem, add a require to a cucumber support file:

require 'icuke/cucumber'

Then start writing steps…

Background:
  Given "iCuke" from "app/iCuke/iCuke.xcodeproj" is loaded in the simulator
Scenario: Press buttons and see stuff
  Then I should see "iCuke"
  When I tap "About"
  Then I should see "About"
  When I tap "Done"
  Then I should see "iCuke"

You might find the list of Supported Step Definitions useful.

Or, you might want to know a bit more about How It Works.

You can also come find us on #icuke on freenode, or try the mailing list: http://groups.google.com/group/icuke

Clone this wiki locally