disable pattern matching tests for truffleruby

This commit is contained in:
HoneyryderChuck 2021-06-12 13:57:54 +01:00
parent 405f8941dd
commit c7704b6e15

View File

@ -6,7 +6,7 @@ class ResponseTest < Minitest::Test
include HTTPX
include ResponseHelpers
if RUBY_VERSION >= "2.7.0"
if (RUBY_ENGINE != "truffleruby" && RUBY_VERSION >= "2.7.0")
require_relative "extensions/response_pattern_match"
include ResponsePatternMatchTests
end