2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-02-14 20:01:45 +01:00
|
|
|
require "checksum"
|
|
|
|
|
|
|
|
describe Checksum do
|
|
|
|
describe "#empty?" do
|
2021-01-07 08:33:57 +01:00
|
|
|
subject { described_class.new("") }
|
2018-03-25 13:30:37 +01:00
|
|
|
|
2017-02-14 20:01:45 +01:00
|
|
|
it { is_expected.to be_empty }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "#==" do
|
2021-01-07 08:33:57 +01:00
|
|
|
subject { described_class.new(TEST_SHA256) }
|
2018-03-25 13:30:37 +01:00
|
|
|
|
2021-01-07 08:33:57 +01:00
|
|
|
let(:other) { described_class.new(TEST_SHA256) }
|
|
|
|
let(:other_reversed) { described_class.new(TEST_SHA256.reverse) }
|
2017-02-14 20:01:45 +01:00
|
|
|
|
|
|
|
it { is_expected.to eq(other) }
|
|
|
|
it { is_expected.not_to eq(other_reversed) }
|
2022-03-01 00:36:05 +00:00
|
|
|
it { is_expected.not_to be_nil }
|
2017-02-14 20:01:45 +01:00
|
|
|
end
|
|
|
|
end
|