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

checksummable_spec.rb « concerns « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b469b2e5c18c229bbb91ab876d30b066c86a376f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Checksummable do
  describe ".hexdigest" do
    let(:fake_class) do
      Class.new do
        include Checksummable
      end
    end

    it 'returns the SHA256 sum of the file' do
      expected = Digest::SHA256.file(__FILE__).hexdigest

      expect(fake_class.hexdigest(__FILE__)).to eq(expected)
    end
  end
end