Welcome to mirror list, hosted at ThFree Co, Russian Federation.

match_file.rb « matchers « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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