Sha256: 202fa1a768f97f45b05367bf195ed1ab64b3e6f75865c8e4ce2f2ec196aab462

Contents?: true

Size: 569 Bytes

Versions: 5

Compression:

Stored size: 569 Bytes

Contents

require 'rubygems'
require 'bundler'
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
require 'test/unit'
require 'shoulda'
require 'webmock/test_unit'
require 'vcr'

VCR.configure do |c|
  c.cassette_library_dir = 'test/vcr_cassettes'
  c.hook_into :webmock
end

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))
require 'webrobots'

class Test::Unit::TestCase
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
husc-0.2.1 vendor/bundle/gems/webrobots-0.1.2/test/helper.rb
husc-0.2.0 vendor/bundle/gems/webrobots-0.1.2/test/helper.rb
husc-0.1.1 vendor/bundle/gems/webrobots-0.1.2/test/helper.rb
husc-0.1.0 vendor/bundle/gems/webrobots-0.1.2/test/helper.rb
webrobots-0.1.2 test/helper.rb