diff options
| author | Kevin Newton <kddnewton@gmail.com> | 2024-12-26 20:26:47 -0500 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2024-12-27 01:26:54 +0000 |
| commit | 4cf4cad4abca43c9396ec8f736f0021b3c678f4d (patch) | |
| tree | 508502db61b637aaf174c2bedb7712b9b44dc72a /test | |
| parent | f226bc20f6df09eb2b988562b4ac9fdc6958c8b0 (diff) | |
[ruby/prism] Turn off unescape tests for Ruby >= 3.4.0
https://github.com/ruby/prism/commit/f982769314
Diffstat (limited to 'test')
| -rw-r--r-- | test/prism/unescape_test.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/prism/unescape_test.rb b/test/prism/unescape_test.rb index 299eddadfe..d241f28c08 100644 --- a/test/prism/unescape_test.rb +++ b/test/prism/unescape_test.rb @@ -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 |
