summaryrefslogtreecommitdiff
path: root/spec/rubyspec/library/digest/sha256/shared/update.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/library/digest/sha256/shared/update.rb')
-rw-r--r--spec/rubyspec/library/digest/sha256/shared/update.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/spec/rubyspec/library/digest/sha256/shared/update.rb b/spec/rubyspec/library/digest/sha256/shared/update.rb
deleted file mode 100644
index 0edc07935b..0000000000
--- a/spec/rubyspec/library/digest/sha256/shared/update.rb
+++ /dev/null
@@ -1,7 +0,0 @@
-describe :sha256_update, shared: true do
- it "can update" do
- cur_digest = Digest::SHA256.new
- cur_digest.send @method, SHA256Constants::Contents
- cur_digest.digest.should == SHA256Constants::Digest
- end
-end