[ruby/prism] Turn off unescape tests for Ruby >= 3.4.0

https://github.com/ruby/prism/commit/f982769314
This commit is contained in:
Kevin Newton 2024-12-26 20:26:47 -05:00 committed by git
parent f226bc20f6
commit 4cf4cad4ab

View File

@ -2,7 +2,9 @@
require_relative "test_helper"
return if RUBY_VERSION < "3.1.0" || Prism::BACKEND == :FFI
return if Prism::BACKEND == :FFI
return if RUBY_VERSION < "3.1.0"
return if RUBY_VERSION >= "3.4.0"
module Prism
class UnescapeTest < TestCase