diff options
Diffstat (limited to 'spec/rubyspec/library/digest/sha256/digest_length_spec.rb')
-rw-r--r-- | spec/rubyspec/library/digest/sha256/digest_length_spec.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/spec/rubyspec/library/digest/sha256/digest_length_spec.rb b/spec/rubyspec/library/digest/sha256/digest_length_spec.rb new file mode 100644 index 0000000000..f3d0d66877 --- /dev/null +++ b/spec/rubyspec/library/digest/sha256/digest_length_spec.rb @@ -0,0 +1,12 @@ +require File.expand_path('../../../../spec_helper', __FILE__) +require File.expand_path('../shared/constants', __FILE__) + +describe "Digest::SHA256#digest_length" do + + it "returns the length of computed digests" do + cur_digest = Digest::SHA256.new + cur_digest.digest_length.should == SHA256Constants::DigestLength + end + +end + |