Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

In Files

  • test/unit.rb

Methods

Test::Unit::LoadPathOption

Public Instance Methods

setup_options(parser, options) click to toggle source
 
               # File test/unit.rb, line 201
def setup_options(parser, options)
  super
  parser.on '-Idirectory', 'Add library load path' do |dirs|
    dirs.split(':').each { |d| $LOAD_PATH.unshift d }
  end
end