blob: 6eda1509498c9c522392f67790e3aa1dc6f88ba1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require File.expand_path('../../../../spec_helper', __FILE__)
require File.expand_path('../shared/constants', __FILE__)
describe "Digest::SHA512#hexdigest!" do
it "returns a hexdigest and resets the state" do
cur_digest = Digest::SHA512.new
cur_digest << SHA512Constants::Contents
cur_digest.hexdigest!.should == SHA512Constants::Hexdigest
cur_digest.hexdigest.should == SHA512Constants::BlankHexdigest
end
end
|