Sha256: ebe96573712eae35a1ca30d98496da69aa66a8a7bfb8bbaef82f2f8dd6270b93
Contents?: true
Size: 502 Bytes
Versions: 4
Compression:
Stored size: 502 Bytes
Contents
require 'yaml' begin require 'psych' rescue LoadError end RSpec::Matchers.define :include_method do |expected| match do |actual| actual.map { |m| m.to_s }.include?(expected.to_s) end end RSpec.configure do |config| config.mock_with :rspec config.color_enabled = true config.order = :random config.include(RSpec::Mocks::Methods) config.run_all_when_everything_filtered = true config.treat_symbols_as_metadata_keys_with_true_values = true config.filter_run_including :focus end
Version data entries
4 entries across 4 versions & 3 rubygems