summaryrefslogtreecommitdiff
path: root/spec/ruby/library/digest/md5/to_s_spec.rb
blob: 59c17ec8216a7cd7a2c2a62ceabeca2d4cbbf9bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require File.expand_path('../../../../spec_helper', __FILE__)

require 'digest/md5'

require File.expand_path('../shared/constants', __FILE__)

describe "Digest::MD5#to_s" do

  it "returns a hexdigest" do
    cur_digest = Digest::MD5.new
    cur_digest.to_s.should == MD5Constants::BlankHexdigest
  end

  it "does not change the internal state" do
    cur_digest = Digest::MD5.new
    cur_digest.to_s.should == MD5Constants::BlankHexdigest
    cur_digest.to_s.should == MD5Constants::BlankHexdigest

    cur_digest << MD5Constants::Contents
    cur_digest.to_s.should == MD5Constants::Hexdigest
    cur_digest.to_s.should == MD5Constants::Hexdigest
  end

end