From 718890aa04579e7b4a96517e7d44b99ee31edfb4 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Tue, 19 Jan 2021 22:29:08 -0800 Subject: Pend erb command tests for Ruby 2.5 for now --- test/erb/test_erb_command.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/erb/test_erb_command.rb b/test/erb/test_erb_command.rb index 93e3522edb..a440045e5b 100644 --- a/test/erb/test_erb_command.rb +++ b/test/erb/test_erb_command.rb @@ -4,6 +4,7 @@ require 'test/unit' class TestErbCommand < Test::Unit::TestCase def test_var + pend 'this test has not supported Ruby 2.5' if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.6.0') assert_in_out_err(["-w", File.expand_path("../../../libexec/erb", __FILE__), "var=hoge"], @@ -11,6 +12,7 @@ class TestErbCommand < Test::Unit::TestCase end def test_template_file_encoding + pend 'this test has not supported Ruby 2.5' if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.6.0') assert_in_out_err(["-w", File.expand_path("../../../libexec/erb", __FILE__)], "<%=''.encoding.to_s%>", ["UTF-8"]) @@ -18,6 +20,7 @@ class TestErbCommand < Test::Unit::TestCase # These interfaces will be removed at Ruby 2.7. def test_deprecated_option + pend 'this test has not supported Ruby 2.5' if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.6.0') warnings = [ "warning: -S option of erb command is deprecated. Please do not use this.", /\n.+\/libexec\/erb:\d+: warning: Passing safe_level with the 2nd argument of ERB\.new is deprecated\. Do not use it, and specify other arguments as keyword arguments\.\n/, -- cgit v1.2.3