Sha256: 72c04fab2e1983336501a78c829eafd0030f6472e48f2296d05de9cdb62b45d0

Contents?: true

Size: 511 Bytes

Versions: 9

Compression:

Stored size: 511 Bytes

Contents

begin
  require 'simplecov'
  require 'coveralls'

  SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
    SimpleCov::Formatter::HTMLFormatter,
    Coveralls::SimpleCov::Formatter
  ]

  SimpleCov.start do
    add_filter '/spec/'
  end
rescue LoadError
end

require File.expand_path(File.dirname(__FILE__) + '/../lib/sax-machine')
SAXMachine.handler = ENV['HANDLER'].to_sym if ENV['HANDLER']

RSpec.configure do |config|
  config.run_all_when_everything_filtered = true
  config.filter_run :focus
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
sax-machine-1.3.2 spec/spec_helper.rb
sax-machine-1.3.1 spec/spec_helper.rb
sax-machine-1.3.0 spec/spec_helper.rb
sax-machine-1.2.0 spec/spec_helper.rb
sax-machine-1.1.1 spec/spec_helper.rb
sax-machine-1.1.0 spec/spec_helper.rb
sax-machine-1.0.3 spec/spec_helper.rb
sax-machine-1.0.2 spec/spec_helper.rb
sax-machine-1.0.1 spec/spec_helper.rb