summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/proc/element_reference_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/proc/element_reference_spec.rb')
-rw-r--r--spec/rubyspec/core/proc/element_reference_spec.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/spec/rubyspec/core/proc/element_reference_spec.rb b/spec/rubyspec/core/proc/element_reference_spec.rb
deleted file mode 100644
index f3dec21253..0000000000
--- a/spec/rubyspec/core/proc/element_reference_spec.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-require File.expand_path('../../../spec_helper', __FILE__)
-require File.expand_path('../shared/call', __FILE__)
-require File.expand_path('../shared/call_arguments', __FILE__)
-
-describe "Proc#[]" do
- it_behaves_like :proc_call, :[]
- it_behaves_like :proc_call_block_args, :[]
-end
-
-describe "Proc#call on a Proc created with Proc.new" do
- it_behaves_like :proc_call_on_proc_new, :call
-end
-
-describe "Proc#call on a Proc created with Kernel#lambda or Kernel#proc" do
- it_behaves_like :proc_call_on_proc_or_lambda, :call
-end