[ruby/prism] Disallow unescape test on FFI backend

https://github.com/ruby/prism/commit/32277722d4
This commit is contained in:
Kevin Newton 2024-05-30 15:21:06 -04:00 committed by git
parent 308c835676
commit 4558abec02

View File

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