summaryrefslogtreecommitdiff
path: root/spec/ruby/core/proc/fixtures/proc_aref.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/proc/fixtures/proc_aref.rb')
-rw-r--r--spec/ruby/core/proc/fixtures/proc_aref.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/spec/ruby/core/proc/fixtures/proc_aref.rb b/spec/ruby/core/proc/fixtures/proc_aref.rb
deleted file mode 100644
index a305667797..0000000000
--- a/spec/ruby/core/proc/fixtures/proc_aref.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-module ProcArefSpecs
- def self.aref
- proc {|a| a }["sometext"]
- end
-
- def self.aref_freeze
- proc {|a| a }["sometext".freeze]
- end
-end