debian-mirror-gitlab/spec/support/matchers/match_file.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
208 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
RSpec::Matchers.define :match_file do |expected|
match do |actual|
2022-08-13 15:12:31 +05:30
expect(Digest::SHA256.hexdigest(actual)).to eq(Digest::SHA256.hexdigest(File.read(expected)))
2017-08-17 22:00:37 +05:30
end
end