summaryrefslogtreecommitdiff
path: root/spec/ruby/library/digest/sha384/shared/update.rb
blob: 1c6e31cf6a54b42029a034b3e06448100786cb1a (plain)
1
2
3
4
5
6
7
describe :sha384_update, shared: true do
  it "can update" do
    cur_digest = Digest::SHA384.new
    cur_digest.send @method, SHA384Constants::Contents
    cur_digest.digest.should == SHA384Constants::Digest
  end
end