aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-12-20 05:09:18 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-12-20 05:09:18 +0000
commitfdb45bbef8a6ab6508e447ac6978462d4ad8642e (patch)
treea579287ea1ef23f20ff1b550ae49cd71e8dcce71 /test
parentea5e1050d7fcd8427812cb47295da563c1949c53 (diff)
downloadruby-fdb45bbef8a6ab6508e447ac6978462d4ad8642e.tar.gz
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
Diffstat (limited to 'test')
-rw-r--r--test/lib/test/unit.rb1
1 files changed, 1 insertions, 0 deletions
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