The folks here have given me the task of figuring out if cucumber can be used successfully to test some of our apps.
I have the latest versions of rails, mechanize, cucumber webrat and rspec installed.
#/cuketest/features/google.feature Feature: New PC In order to get a sweet new PC As a apple nerd I want to find apple.com
Scenario: Get a sweet new computer Given I visit "http://www.google.com" When I fill in "q" with "apple" And I press "Google Search" Then I should see "www.apple.com"
#/cuketest/features/support/env.rb #... Webrat.configure do |config| config.mode = :mechanize end #... class MechanizeWorld < Webrat::MechanizeSession require 'spec' include Spec::Matchers end #...
#/cuketest/features/support/paths.rb module NavigationHelpers # Maps a name to a path. Used by the