summaryrefslogtreecommitdiff
path: root/spec/support/matchers/match_file.rb
blob: d1888b3376af63e45ae73db78decb70bf8d28844 (plain)
1
2
3
4
5
RSpec::Matchers.define :match_file do |expected|
  match do |actual|
    expect(Digest::MD5.hexdigest(actual)).to eq(Digest::MD5.hexdigest(File.read(expected)))
  end
end