Class: Test::Unit::Priority::Checker

Inherits:
Object
  • Object
show all
Defined in:
lib/test/unit/priority.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(test) ⇒ Checker

Returns a new instance of Checker.



78
79
80
# File 'lib/test/unit/priority.rb', line 78

def initialize(test)
  @test = test
end

Instance Attribute Details

#testObject (readonly)

Returns the value of attribute test.



77
78
79
# File 'lib/test/unit/priority.rb', line 77

def test
  @test
end

Class Method Details

.have_priority?(name) ⇒ Boolean

Returns:

  • (Boolean)


33
34
35
36
# File 'lib/test/unit/priority.rb', line 33

def have_priority?(name)
  singleton_class = (class << self; self; end)
  singleton_class.method_defined?(priority_check_method_name(name))
end

.need_to_run?(test) ⇒ Boolean

Returns:

  • (Boolean)


38
39
40
41
42
43
44
45
# File 'lib/test/unit/priority.rb', line 38

def need_to_run?(test)
  priority = test[:priority] || :normal
  if have_priority?(priority)
    send(priority_check_method_name(priority), test)
  else
    true
  end
end

.run_priority_high?(test) ⇒ Boolean

Returns:

  • (Boolean)


55
56
57
# File 'lib/test/unit/priority.rb', line 55

def run_priority_high?(test)
  rand > 0.3
end

.run_priority_important?(test) ⇒ Boolean

Returns:

  • (Boolean)


51
52
53
# File 'lib/test/unit/priority.rb', line 51

def run_priority_important?(test)
  rand > 0.1
end

.run_priority_low?(test) ⇒ Boolean

Returns:

  • (Boolean)


63
64
65
# File 'lib/test/unit/priority.rb', line 63

def run_priority_low?(test)
  rand > 0.75
end

.run_priority_must?(test) ⇒ Boolean

Returns:

  • (Boolean)


47
48
49
# File 'lib/test/unit/priority.rb', line 47

def run_priority_must?(test)
  true
end

.run_priority_never?(test) ⇒ Boolean

Returns:

  • (Boolean)


67
68
69
# File 'lib/test/unit/priority.rb', line 67

def run_priority_never?(test)
  false
end

.run_priority_normal?(test) ⇒ Boolean

Returns:

  • (Boolean)


59
60
61
# File 'lib/test/unit/priority.rb', line 59

def run_priority_normal?(test)
  rand > 0.5
end

Instance Method Details

#need_to_run?Boolean

Returns:

  • (Boolean)


94
95
96
# File 'lib/test/unit/priority.rb', line 94

def need_to_run?
  !previous_test_success? or self.class.need_to_run?(@test)
end

#setupObject



82
83
84
# File 'lib/test/unit/priority.rb', line 82

def setup
  FileUtils.rm_f(passed_file)
end

#teardownObject



86
87
88
89
90
91
92
# File 'lib/test/unit/priority.rb', line 86

def teardown
  if @test.send(:passed?)
    FileUtils.touch(passed_file)
  else
    FileUtils.rm_f(passed_file)
  end
end