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: 0c1f95d45f5b19d97f845256f1bf40a1f9dc9063 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

RSpec::Matchers.define :match_file do |expected|
  match do |actual|
    expect(Digest::SHA256.hexdigest(actual)).to eq(Digest::SHA256.hexdigest(File.read(expected)))
  end
end