summaryrefslogtreecommitdiff
path: root/spec/ruby/library/digest/sha256/digest_bang_spec.rb
blob: b876c2ceed7a41264ba46515fb305668f3889cd9 (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::SHA256#digest!" do

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

end