summaryrefslogtreecommitdiff
path: root/spec/support/matchers/match_file.rb
blob: 4e522b529126787274d7464d2f96c7bdaa95aeea (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

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