aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorsorah <sorah@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-22 09:47:24 +0000
committersorah <sorah@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-22 09:47:24 +0000
commitc0ec3efcae87aab655738ff7fa2ea16986b9ef84 (patch)
treea9c3f37c1c6e5bc5a6df9f68f1a0294beb8c950b /lib
parentb67bc8d722e9351b34e68ac77d397aead29961cc (diff)
downloadruby-c0ec3efcae87aab655738ff7fa2ea16986b9ef84.tar.gz
* lib/test/unit.rb (setup_options): add option "--show-skip" to
cancel "--hide-skip" (-q) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34740 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/test/unit.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/test/unit.rb b/lib/test/unit.rb
index fa95aae2b2..7db23f8cea 100644
--- a/lib/test/unit.rb
+++ b/lib/test/unit.rb
@@ -112,6 +112,10 @@ module Test
opts.on '-q', '--hide-skip', 'Hide skipped tests' do
options[:hide_skip] = true
end
+
+ opts.on '--show-skip', 'Show skipped tests' do
+ options[:hide_skip] = false
+ end
end
def non_options(files, options)