Module: Test::Unit::Priority::ClassMethods

Defined in:
lib/test/unit/priority.rb

Instance Method Summary collapse

Instance Method Details

#priority(name, *tests) ⇒ Object



175
176
177
178
179
180
# File 'lib/test/unit/priority.rb', line 175

def priority(name, *tests)
  unless Checker.have_priority?(name)
    raise ArgumentError, "unknown priority: #{name}"
  end
  attribute(:priority, name, {:keep => true}, *tests)
end