Sha256: 0557faeef75605bc80bb8623a4ee2ba3646bc2aad18093c0073f0c14fba927a8
Contents?: true
Size: 958 Bytes
Versions: 12
Compression:
Stored size: 958 Bytes
Contents
require 'rubygems' require 'test/unit' require 'net/telnet' require 'fileutils' $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) $LOAD_PATH.unshift(File.dirname(__FILE__)) require 'sauce' include Sauce::Utilities Sauce.config do |config| config.browsers = [ ["Windows 2003", "firefox", "3.6."], ["Windows 2003", "iexplore", "8."] ] config.browser_url = "http://saucelabs.com" #config.application_host = "localhost" #config.application_port = "4444" end def ensure_rvm_installed rvm_executable = File.expand_path("~/.rvm/bin/rvm") if File.exist? rvm_executable unless defined?(RVM) rvm_lib_path = File.expand_path("~/.rvm/lib") $LOAD_PATH.unshift(rvm_lib_path) unless $LOAD_PATH.include?(rvm_lib_path) require 'rvm' end else raise "You do not have RVM installed. It is required for the integration tests.\n" + "Please install it from http://rvm.beginrescueend.com/" end end
Version data entries
12 entries across 12 versions & 1 rubygems