ruby-changes:64963
From: Takashi <ko1@a...>
Date: Wed, 20 Jan 2021 17:21:28 +0900 (JST)
Subject: [ruby-changes:64963] 718890aa04 (master): Pend erb command tests for Ruby 2.5 for now
https://git.ruby-lang.org/ruby.git/commit/?id=718890aa04 From 718890aa04579e7b4a96517e7d44b99ee31edfb4 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun <takashikkbn@g...> Date: Tue, 19 Jan 2021 22:29:08 -0800 Subject: Pend erb command tests for Ruby 2.5 for now diff --git a/test/erb/test_erb_command.rb b/test/erb/test_erb_command.rb index 93e3522..a440045 100644 --- a/test/erb/test_erb_command.rb +++ b/test/erb/test_erb_command.rb @@ -4,6 +4,7 @@ require 'test/unit' https://github.com/ruby/ruby/blob/trunk/test/erb/test_erb_command.rb#L4 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 https://github.com/ruby/ruby/blob/trunk/test/erb/test_erb_command.rb#L12 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 https://github.com/ruby/ruby/blob/trunk/test/erb/test_erb_command.rb#L20 # 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 v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/