Sha256: 2f52dedbe8d68701b87552b7b1a458214867202e9974bb7903c6dbdfe9e950f1

Contents?: true

Size: 749 Bytes

Versions: 1

Compression:

Stored size: 749 Bytes

Contents

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

require "micron"
require "micron/minitest"

# Load any HTTP clients before webmock so they can be stubbed
require 'webmock'
include WebMock::API
require 'mocha/setup'

$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__)))
$LOAD_PATH.unshift(File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib')))
ENV["RUBYLIB"] = $:.first

require "bixby-client"
require "base"

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

EasyCov.start

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bixby-client-0.5.3 test/helper.rb