Sha256: 4940606101d6fc2a682124ce73861e68178968728aa9fd7d4db1c1b5f01f446d

Contents?: true

Size: 801 Bytes

Versions: 11

Compression:

Stored size: 801 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 'micron/minitest'

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'

require "base"
require "sample_handler"
require "side_effect"

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

EasyCov.path = "coverage"
EasyCov.filters << EasyCov::IGNORE_GEMS << EasyCov::IGNORE_STDLIB
EasyCov.start

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
bixby-common-0.6.4 test/helper.rb
bixby-common-0.6.3 test/helper.rb
bixby-common-0.6.2 test/helper.rb
bixby-common-0.6.1 test/helper.rb
bixby-common-0.6.0 test/helper.rb
bixby-common-0.5.0 test/helper.rb
bixby-common-0.4.13 test/helper.rb
bixby-common-0.4.12 test/helper.rb
bixby-common-0.4.11 test/helper.rb
bixby-common-0.4.10 test/helper.rb
bixby-common-0.4.9 test/helper.rb