In Files

  • test-unit-3.3.7/lib/test/unit/priority.rb

Class/Module Index [+]

Quicksearch

Test::Unit::Priority::Checker

Attributes

test[R]

Public Class Methods

available_priorities() click to toggle source
 
               # File test-unit-3.3.7/lib/test/unit/priority.rb, line 61
def available_priorities
  methods(false).collect do |name|
    /\Arun_priority_(.+)\?\z/ =~ name.to_s
    $1
  end.compact
end
            
have_priority?(name) click to toggle source
 
               # File test-unit-3.3.7/lib/test/unit/priority.rb, line 47
def have_priority?(name)
  singleton_class = (class << self; self; end)
  singleton_class.method_defined?(priority_check_method_name(name))
end
            
need_to_run?(test) click to toggle source
 
               # File test-unit-3.3.7/lib/test/unit/priority.rb, line 52
def need_to_run?(test)
  priority = test[:priority] || Priority.default
  if have_priority?(priority)
    __send__(priority_check_method_name(priority), test)
  else
    true
  end
end
            
new(test) click to toggle source
 
               # File test-unit-3.3.7/lib/test/unit/priority.rb, line 99
def initialize(test)
  @test = test
end
            
run_priority_high?(test) click to toggle source
 
               # File test-unit-3.3.7/lib/test/unit/priority.rb, line 76
def run_priority_high?(test)
  rand > 0.3
end
            
run_priority_important?(test) click to toggle source
 
               # File test-unit-3.3.7/lib/test/unit/priority.rb, line 72
def run_priority_important?(test)
  rand > 0.1
end
            
run_priority_low?(test) click to toggle source
 
               # File test-unit-3.3.7/lib/test/unit/priority.rb, line 84
def run_priority_low?(test)
  rand > 0.75
end
            
run_priority_must?(test) click to toggle source
 
               # File test-unit-3.3.7/lib/test/unit/priority.rb, line 68
def run_priority_must?(test)
  true
end
            
run_priority_never?(test) click to toggle source
 
               # File test-unit-3.3.7/lib/test/unit/priority.rb, line 88
def run_priority_never?(test)
  false
end
            
run_priority_normal?(test) click to toggle source
 
               # File test-unit-3.3.7/lib/test/unit/priority.rb, line 80
def run_priority_normal?(test)
  rand > 0.5
end
            

Public Instance Methods

need_to_run?() click to toggle source
 
               # File test-unit-3.3.7/lib/test/unit/priority.rb, line 115
def need_to_run?
  !previous_test_success? or self.class.need_to_run?(@test)
end
            
setup() click to toggle source
 
               # File test-unit-3.3.7/lib/test/unit/priority.rb, line 103
def setup
  FileUtils.rm_f(passed_file)
end
            
teardown() click to toggle source
 
               # File test-unit-3.3.7/lib/test/unit/priority.rb, line 107
def teardown
  if @test.__send__(:passed?)
    FileUtils.touch(passed_file)
  else
    FileUtils.rm_f(passed_file)
  end
end