Sha256: 34d11d7d5a2761c100ec8a05ac1db1037d20365a717686733e6c223c1c3e5349
Contents?: true
Size: 718 Bytes
Versions: 1
Compression:
Stored size: 718 Bytes
Contents
# Copyright (c) 2020 Jerome Arbez-Gindre # frozen_string_literal: true require('aasm/rspec') require('aruba/rspec') require('bundler/setup') # formatter = [SimpleCov::Formatter::HTMLFormatter] # SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new(formatter) require('simplecov') SimpleCov.start do command_name 'spec:unit' add_group 'Libraries', 'lib' add_group 'Unit test', 'spec/unit' add_filter 'config' add_filter 'vendor' minimum_coverage 100 end RSpec.configure do |config| config.include(Aruba::Api) end RSpec::Matchers.define(:matchdata_including) do |h| match do |matchdata| h.all? do |key, _| matchdata[key] == h[key] end end end require('defmastership')
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
defmastership-1.0.17 | spec/spec_helper.rb |