aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/digest/sha512/digest_bang_spec.rb
blob: 260595152d8cb26db4062f635b2d639319c90388 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require File.expand_path('../../../../spec_helper', __FILE__)
require File.expand_path('../shared/constants', __FILE__)

describe "Digest::SHA512#digest!" do

  it "returns a digest and can digest!" do
    cur_digest = Digest::SHA512.new
    cur_digest << SHA512Constants::Contents
    cur_digest.digest!().should == SHA512Constants::Digest
    cur_digest.digest().should == SHA512Constants::BlankDigest
  end

end