summaryrefslogtreecommitdiff
path: root/spec/ruby/library/digest/sha256/shared/length.rb
blob: 996673a5bd41ba531d6cc9b820c1d11db64b7095 (plain)
1
2
3
4
5
6
7
8
describe :sha256_length, shared: true do
  it "returns the length of the digest" do
    cur_digest = Digest::SHA256.new
    cur_digest.send(@method).should == SHA256Constants::BlankDigest.size
    cur_digest << SHA256Constants::Contents
    cur_digest.send(@method).should == SHA256Constants::Digest.size
  end
end