Sha256: 7900ab3d88c6fccb2e280e4a65519cb2ce77dee8b9f5a989495f45d3b9498e5e
Contents?: true
Size: 1.08 KB
Versions: 3
Compression:
Stored size: 1.08 KB
Contents
#require 'yaml' #Couldn't find use anywhere require 'active_support/core_ext/hash' module Awetestlib ::USING_WINDOWS = !!((RUBY_PLATFORM =~ /(win|w)(32|64)$/) || (RUBY_PLATFORM=~ /mswin|mingw/)) ::USING_OSX = RUBY_PLATFORM =~ /darwin/ BROWSER_MAP = { 'FF' => 'Firefox', 'IE' => 'Internet Explorer', 'S' => 'Safari', 'MS' => 'Mobile Safari', 'C' => 'Chrome' } BROWSER_ALTERNATES = { 'OSX' => { 'IE' => 'S' }, 'Windows' => { 'S' => 'IE' } } if USING_WINDOWS #require 'win32ole' <-- We'll load this later in Shamisen::AwetestLegacy::Runner. It has to be loaded after watir, see https://www.pivotaltracker.com/story/show/19249981 require 'win32/screenshot' end #require 'active_support/inflector' #require 'active_support/core_ext/object' #require 'active_support/core_ext/hash' require 'awetestlib/runner' require 'andand' require 'awetestlib/regression/runner' require 'pry' if USING_OSX require 'appscript' end #require 'roo' #moved to awetestlib runner end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
awetestlib-0.1.13-x86-mingw32 | lib/awetestlib.rb |
awetestlib-0.1.12-x86-mingw32 | lib/awetestlib.rb |
awetestlib-0.1.11-x86-mingw32 | lib/awetestlib.rb |