Sha256: fd7bf3a8de631ec20006cdf6f2c5d156ffa478602b7dfc8fa3e5a4d318a55615

Contents?: true

Size: 677 Bytes

Versions: 6

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

6 entries across 6 versions & 1 rubygems

Version Path
bixby-common-0.4.4 test/helper.rb
bixby-common-0.4.3 test/helper.rb
bixby-common-0.4.2 test/helper.rb
bixby-common-0.4.1 test/helper.rb
bixby-common-0.4.0 test/helper.rb
bixby-common-0.3.16 test/helper.rb