Created
December 14, 2010 18:10
-
-
Save tdreyno/740817 to your computer and use it in GitHub Desktop.
Teaching Cucumber Lebowski
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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