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, 16 insertions, 0 deletions
diff --git a/spec/rubyspec/core/proc/element_reference_spec.rb b/spec/rubyspec/core/proc/element_reference_spec.rb
new file mode 100644
index 0000000000..f3dec21253
--- /dev/null
+++ b/spec/rubyspec/core/proc/element_reference_spec.rb
@@ -0,0 +1,16 @@
+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