summaryrefslogtreecommitdiff
path: root/spec/ruby/library/digest/sha384/shared/length.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/digest/sha384/shared/length.rb')
-rw-r--r--spec/ruby/library/digest/sha384/shared/length.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/spec/ruby/library/digest/sha384/shared/length.rb b/spec/ruby/library/digest/sha384/shared/length.rb
deleted file mode 100644
index 0c88288bcf..0000000000
--- a/spec/ruby/library/digest/sha384/shared/length.rb
+++ /dev/null
@@ -1,8 +0,0 @@
-describe :sha384_length, shared: true do
- it "returns the length of the digest" do
- cur_digest = Digest::SHA384.new
- cur_digest.send(@method).should == SHA384Constants::BlankDigest.size
- cur_digest << SHA384Constants::Contents
- cur_digest.send(@method).should == SHA384Constants::Digest.size
- end
-end