aboutsummaryrefslogtreecommitdiffstats
path: root/spec/support/custom_matchers.rb
blob: bdc3efaa0f57bfdf5167dd6fed23537d3a87a9c6 (plain)
1
2
3
4
5
6
7
require 'rspec/expectations'

RSpec::Matchers.define :include_all do |expected|
  match do |actual|
    ( expected - actual ).empty?
  end
end