Sha256: d7eebda298be55e04af6175388ff1a853f22882b8ff15dc55e2700b691b52aa5
Contents?: true
Size: 377 Bytes
Versions: 2
Compression:
Stored size: 377 Bytes
Contents
require "spec_helper" require "sauce" Sauce.config do |c| c.browsers = [ ["Windows 2008", "iexplore", "9"], ["Linux", "opera", 12] ] end describe "Specs in the Selenium Directory" do before :all do $EXECUTIONS = 0 end after :all do $EXECUTIONS.should be 2 end it "should get run on every defined browser" do $EXECUTIONS += 1 end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sauce-2.3.6 | spec/integration/rspec/spec/selenium/selenium_directory_spec.rb |
sauce-2.3.5 | spec/integration/rspec/spec/selenium/selenium_directory_spec.rb |