summaryrefslogtreecommitdiff
path: root/spec/ruby/library/digest/sha384/block_length_spec.rb
blob: a2578259662718f7f5f76cd2ba1ac3486c4529df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require_relative '../../../spec_helper'
require_relative 'shared/constants'

describe "Digest::SHA384#block_length" do

  it "returns the length of digest block" do
    cur_digest = Digest::SHA384.new
    cur_digest.block_length.should == SHA384Constants::BlockLength
  end

end