From 8c5e6ba015a6b7f9537e22c6d6393abb2c51efd7 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 20 Dec 2016 05:09:18 +0000 Subject: [PATCH] test/unit.rb: separator [ci skip] * test/lib/test/unit.rb (ExcludesOption#setup_options): add separator for --excludes-dir in help message. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57116 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/lib/test/unit.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/test/lib/test/unit.rb b/test/lib/test/unit.rb index 9e8a2be848..1a5957bfc1 100644 --- a/test/lib/test/unit.rb +++ b/test/lib/test/unit.rb @@ -902,6 +902,7 @@ module Test excludes = excludes.split(File::PATH_SEPARATOR) end options[:excludes] = excludes || [] + parser.separator "excludes options:" parser.on '-X', '--excludes-dir DIRECTORY', "Directory name of exclude files" do |d| options[:excludes].concat d.split(File::PATH_SEPARATOR) end