Class: Test::Unit::Priority::Checker
- Inherits:
-
Object
- Object
- Test::Unit::Priority::Checker
- Defined in:
- lib/test/unit/priority.rb
Instance Attribute Summary collapse
-
#test ⇒ Object
readonly
Returns the value of attribute test.
Class Method Summary collapse
- .have_priority?(name) ⇒ Boolean
- .need_to_run?(test) ⇒ Boolean
- .run_priority_high?(test) ⇒ Boolean
- .run_priority_important?(test) ⇒ Boolean
- .run_priority_low?(test) ⇒ Boolean
- .run_priority_must?(test) ⇒ Boolean
- .run_priority_never?(test) ⇒ Boolean
- .run_priority_normal?(test) ⇒ Boolean
Instance Method Summary collapse
-
#initialize(test) ⇒ Checker
constructor
A new instance of Checker.
- #need_to_run? ⇒ Boolean
- #setup ⇒ Object
- #teardown ⇒ Object
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
#test ⇒ Object (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
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
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
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
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
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
47 48 49 |
# File 'lib/test/unit/priority.rb', line 47 def run_priority_must?(test) true end |
.run_priority_never?(test) ⇒ Boolean
67 68 69 |
# File 'lib/test/unit/priority.rb', line 67 def run_priority_never?(test) false end |
.run_priority_normal?(test) ⇒ 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
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 |
#setup ⇒ Object
82 83 84 |
# File 'lib/test/unit/priority.rb', line 82 def setup FileUtils.rm_f(passed_file) end |
#teardown ⇒ Object
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 |