Sha256: 8beebac558a89eca1b48c81df30fc14316f41e6862cf596b1db181d10cfd02bb

Contents?: true

Size: 677 Bytes

Versions: 8

Compression:

Stored size: 677 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_guard'
TestGuard.load_simplecov()

begin
  require 'curb'
  require 'curb_threadpool'
rescue LoadError
end

begin
  require 'httpclient'
rescue LoadError
end

require 'webmock'
require 'mocha/setup'

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

Dir.glob(File.dirname(__FILE__) + "/../lib/**/*.rb").each{ |f| require f }

MiniTest::Unit.autorun

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
bixby-common-0.3.15 test/helper.rb
bixby-common-0.3.14 test/helper.rb
bixby-common-0.3.13 test/helper.rb
bixby-common-0.3.12 test/helper.rb
bixby-common-0.3.11 test/helper.rb
bixby-common-0.3.10 test/helper.rb
bixby-common-0.3.9 test/helper.rb
bixby-common-0.3.8 test/helper.rb