Sha256: 81edbf057ba362c824988d58804c0ca3729f177280c4731136c842027ec579aa

Contents?: true

Size: 972 Bytes

Versions: 1

Compression:

Stored size: 972 Bytes

Contents

#**
# * Created by: Anand Bagmar
# * Email: abagmar@gmail.com
# * Date: Dec 29, 2010
# * Time: 9:34:02 AM
# *
# * Copyright 2010 Anand Bagmar (abagmar@gmail.com).  Distributed under the Apache 2.0 License
# *
# * http://essenceoftesting.blogspot.com/search/label/waat
# * http://github.com/anandbagmar/WAAT-Ruby
# * http://github.com/anandbagmar/WAAT
# *
#**

require 'bundler'
require 'selenium-webdriver'

begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "..", "..", "lib"))

require 'test/unit/assertions'

#
#
#   WAAT configuration
#
#

@waat_src = File.join(File.dirname(__FILE__), "..", "..", "lib", "WAAT")
puts "@WAAT_root_location: #{@waat_src}"
require @waat_src

#   end WAAT configuration

World(Test::Unit::Assertions)

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
WAAT-1.4.0 features/support/env.rb