Sha256: 1483c8698f09921031b49e5a1625b663a4e0c7336df7f5b45999ab84504d0c64

Contents?: true

Size: 686 Bytes

Versions: 12

Compression:

Stored size: 686 Bytes

Contents

require 'simplecov'

module SimpleCov::Configuration
  def clean_filters
    @filters = []
  end
end

SimpleCov.configure do
  clean_filters
  load_adapter 'test_frameworks'
end

ENV["COVERAGE"] && SimpleCov.start do
  add_filter "/.rvm/"
end
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'

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))
require 'ruby-unificationengine'

class Test::Unit::TestCase
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
ue-ruby-sdk-1.1.13 test/helper.rb
ue-ruby-sdk-1.1.12 test/helper.rb
ue-ruby-sdk-1.1.9 test/helper.rb
ue-ruby-sdk-1.1.8 test/helper.rb
ue-ruby-sdk-1.1.7 test/helper.rb
ue-ruby-sdk-1.1.6 test/helper.rb
ue-ruby-sdk-1.1.5 test/helper.rb
ue-ruby-sdk-1.1.3 test/helper.rb
ue-ruby-sdk-1.1.2 test/helper.rb
ue-ruby-sdk-1.1.1 test/helper.rb
ue-ruby-sdk-1.1.0 test/helper.rb
ue-ruby-sdk-1.0.0 test/helper.rb