summaryrefslogtreecommitdiff
path: root/spec/ruby/library/digest/md5/digest_bang_spec.rb
blob: 88b865dcba3c0471ed482f1807d55f9b656353f7 (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::MD5#digest!" do

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

end