Sha256: 4c1d35fd4ccfd5504fda3593fce43cecadebab170ad83de96b0e55128dfe355f

Contents?: true

Size: 1.03 KB

Versions: 9

Compression:

Stored size: 1.03 KB

Contents

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

describe "Digest::MD5#digest" do

  it "returns a digest" do
    cur_digest = Digest::MD5.new
    cur_digest.digest().should == MD5Constants::BlankDigest

    # add something to check that the state is reset later
    cur_digest << "test"

    cur_digest.digest(MD5Constants::Contents).should == MD5Constants::Digest
    # second invocation is intentional, to make sure there are no side-effects
    cur_digest.digest(MD5Constants::Contents).should == MD5Constants::Digest

    # after all is done, verify that the digest is in the original, blank state
    cur_digest.digest.should == MD5Constants::BlankDigest
  end

end

describe "Digest::MD5.digest" do

  it "returns a digest" do
    Digest::MD5.digest(MD5Constants::Contents).should == MD5Constants::Digest
    # second invocation is intentional, to make sure there are no side-effects
    Digest::MD5.digest(MD5Constants::Contents).should == MD5Constants::Digest
    Digest::MD5.digest("").should == MD5Constants::BlankDigest
  end

end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
rubysl-digest-2.1 spec/md5/digest_spec.rb
rubysl-digest-1.2.0 spec/md5/digest_spec.rb
rubysl-digest-1.1.0 spec/md5/digest_spec.rb
rubysl-digest-2.0.8 spec/md5/digest_spec.rb
rubysl-digest-2.0.7 spec/md5/digest_spec.rb
rubysl-digest-1.0.1 spec/md5/digest_spec.rb
rubysl-digest-2.0.3 spec/md5/digest_spec.rb
rubysl-digest-1.0.0 spec/md5/digest_spec.rb
rubysl-digest-2.0.2 spec/md5/digest_spec.rb