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: 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