Sha256: 51720916f4d2008e1f192d0517d9acf099cf2ab07b96f1a00d58523e34e4c429
Contents?: true
Size: 867 Bytes
Versions: 22
Compression:
Stored size: 867 Bytes
Contents
# ------------------------------------------------------------ # SimpleCov/CodeClimate setup if ENV['COVERAGE'] if ENV['CODECLIMATE_REPO_TOKEN'] require 'codeclimate-test-reporter' CodeClimate::TestReporter.start end require 'simplecov' require 'simplecov-console' SimpleCov.minimum_coverage 100 SimpleCov.start do add_filter '/spec/' SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[ SimpleCov::Formatter::HTMLFormatter, SimpleCov::Formatter::Console, ] end end # ------------------------------------------------------------ # Rspec configuration RSpec.configure do |config| config.raise_errors_for_deprecations! config.mock_with :rspec end require 'rspec_custom_matchers' # ------------------------------------------------------------ # XML::MappingExtensions require 'xml/mapping_extensions'
Version data entries
22 entries across 22 versions & 1 rubygems
Version | Path |
---|---|
xml-mapping_extensions-0.1.1 | spec/spec_helper.rb |
xml-mapping_extensions-0.1.0 | spec/spec_helper.rb |