Sha256: c8fb9cd1d46d3524826f1d14f071fc3a55b883156f32a5a2c72a639879d7b9e8

Contents?: true

Size: 650 Bytes

Versions: 71

Compression:

Stored size: 650 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'

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

class Test::Unit::TestCase
end

Version data entries

71 entries across 71 versions & 1 rubygems

Version Path
pfab-0.58.11 test/helper.rb
pfab-0.58.10 test/helper.rb
pfab-0.58.9 test/helper.rb
pfab-0.58.8 test/helper.rb
pfab-0.58.7 test/helper.rb
pfab-0.58.6 test/helper.rb
pfab-0.58.5 test/helper.rb
pfab-0.58.4 test/helper.rb
pfab-0.58.3 test/helper.rb
pfab-0.58.2 test/helper.rb
pfab-0.58.1 test/helper.rb
pfab-0.58.0 test/helper.rb
pfab-0.57.1 test/helper.rb
pfab-0.57.0 test/helper.rb
pfab-0.56.0 test/helper.rb
pfab-0.50.0 test/helper.rb
pfab-0.49.0 test/helper.rb
pfab-0.48.0 test/helper.rb
pfab-0.47.1 test/helper.rb
pfab-0.47.0 test/helper.rb