From 648b7903b5ee13ef4b96d1261b7610b6dbbe7999 Mon Sep 17 00:00:00 2001 From: Jeremy Evans Date: Thu, 28 Mar 2024 12:49:34 -0700 Subject: [PATCH] Skip 2 specs on Ruby 2.3 that fail in CI due to base64 gem with wrong required_ruby_version --- spec/rails_integration_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/rails_integration_spec.rb b/spec/rails_integration_spec.rb index 478645d..a08369f 100644 --- a/spec/rails_integration_spec.rb +++ b/spec/rails_integration_spec.rb @@ -257,7 +257,7 @@ def o.puts(*) end sin_get('/nest_inputs').must_equal '0
1

FBB

2 n1
n2 n3
n4
Foo
n5 3
4' end - unless defined?(JRUBY_VERSION) && JRUBY_VERSION =~ /\A9\.0/ && defined?(ActionPack::VERSION::STRING) && ActionPack::VERSION::STRING >= '5.1' + unless (defined?(JRUBY_VERSION) && JRUBY_VERSION =~ /\A9\.0/ && defined?(ActionPack::VERSION::STRING) && ActionPack::VERSION::STRING >= '5.1') || RUBY_VERSION =~ /\A2\.3/ it "#form should correctly handle situation Sequel integration with subforms where multiple templates are used with same form object" do sin_get('/nest_seq').sub(%r{}, '').must_equal '0
1
Foo
2 n1
Artist n2 n3
n4
Bar
n5 3
4' end