Skip to content

Instantly share code, notes, and snippets.

@tdreyno
Created December 14, 2010 18:10
Show Gist options
  • Save tdreyno/740817 to your computer and use it in GitHub Desktop.
Save tdreyno/740817 to your computer and use it in GitHub Desktop.
Teaching Cucumber Lebowski
gem 'rspec', "~> 2.1.0"
require 'rspec'
require 'lebowski/rspec'
include Lebowski::Foundation
include Lebowski::Foundation::Views
include Lebowski::Foundation::Panes
include Lebowski::SCUI::Views
Before do
App = MainApplication.new :app_root_path => "/card_flip",
:app_name => "CardFlip",
:browser => :firefox
App.start do |app|
app['isLoaded'] == true
end
App.move_to 1, 1
App.resize_to 1360, 768
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment