summaryrefslogtreecommitdiff
path: root/spec/ruby/library/digest/sha512/reset_spec.rb
blob: b2f28dc670b3d9b8138ff5688bde19ef2c475478 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require File.expand_path('../../../../spec_helper', __FILE__)
require File.expand_path('../shared/constants', __FILE__)

describe "Digest::SHA512#reset" do

  it "returns digest state to initial conditions" do
    cur_digest = Digest::SHA512.new
    cur_digest.update SHA512Constants::Contents
    cur_digest.digest().should_not == SHA512Constants::BlankDigest
    cur_digest.reset
    cur_digest.digest().should == SHA512Constants::BlankDigest
  end

end