Sha256: 6f8357b52895c625554f4fae6d7404a4223d8f72ae2c2d6e533788824f76f54e
Contents?: true
Size: 441 Bytes
Versions: 6
Compression:
Stored size: 441 Bytes
Contents
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
6 entries across 6 versions & 3 rubygems