Skip to content

Instantly share code, notes, and snippets.

@MichaelXavier
Created March 3, 2009 06:26
Show Gist options
  • Save MichaelXavier/73215 to your computer and use it in GitHub Desktop.
Save MichaelXavier/73215 to your computer and use it in GitHub Desktop.
require 'test_helper'
class CheckinProcessingTest < ActionController::IntegrationTest
context "a user filling out the checkin form" do
should "do his thing" do
visit '/'
#fill out the account form
select 'No', :from => 'account[prev_cust_claim]'
click_button 'Continue'
sleep 5
fill_in 'account[firstname]', :with => 'Foo'#test breaks here
fill_in 'account[lastname]', :with => 'Bar'
#...
click_button 'Continue'
#...
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment