Sha256: f3af77ff9196874d2461a7e068266bd76d91d5db57cdb4bda3745e10c8dbed79

Contents?: true

Size: 674 Bytes

Versions: 26

Compression:

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

class Test::Unit::TestCase
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
magerecord-0.5.8 test/helper.rb
magerecord-0.5.7 test/helper.rb
magerecord-0.5.6 test/helper.rb
magerecord-0.5.5 test/helper.rb
magerecord-0.5.4 test/helper.rb
magerecord-0.5.3 test/helper.rb
magerecord-0.5.2 test/helper.rb
magerecord-0.5.1 test/helper.rb
magerecord-0.5.0 test/helper.rb
magerecord-0.4.0 test/helper.rb
magerecord-0.3.1 test/helper.rb
magerecord-0.3.0 test/helper.rb
magerecord-0.2.2 test/helper.rb
magerecord-0.2.1 test/helper.rb
magerecord-0.2.0 test/helper.rb
magerecord-0.1.12 test/helper.rb
magerecord-0.1.10 test/helper.rb
magerecord-0.1.9 test/helper.rb
magerecord-0.1.8 test/helper.rb
magerecord-0.1.6 test/helper.rb