aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_compile_prism.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/ruby/test_compile_prism.rb b/test/ruby/test_compile_prism.rb
index 734a36822c..f57d980120 100644
--- a/test/ruby/test_compile_prism.rb
+++ b/test/ruby/test_compile_prism.rb
@@ -409,6 +409,11 @@ module Prism
test_prism_eval("alias :prism_a :to_s")
end
+ def test_DefNode
+ test_prism_eval("def prism_method; end")
+ test_prism_eval("a = Object.new; def a.prism_singleton; :ok; end; a.prism_singleton")
+ end
+
def test_UndefNode
test_prism_eval("def prism_undef_node_1; end; undef prism_undef_node_1")
test_prism_eval(<<-HERE