summaryrefslogtreecommitdiff
path: root/spec/ruby/library/digest/sha384/digest_bang_spec.rb
blob: 83b68ae7c24f303e5b86bbb26ef3b51acc8c5865 (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::SHA384#digest!" do

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

end