Module: Minitest::Tagz::MinitestRunnerStrategy
- Defined in:
- lib/minitest/tagz.rb
Overview
The strategy for patching the Minitest run time
Defined Under Namespace
Modules: RunPatch, RunnableMethodsFilter
Class Method Summary
collapse
Class Method Details
.patch ⇒ Object
66
67
68
|
# File 'lib/minitest/tagz.rb', line 66
def patch
::Minitest.singleton_class.class_eval { prepend(RunPatch) }
end
|
.serialize(owner, test_name) ⇒ Object
10
11
12
|
# File 'lib/minitest/tagz.rb', line 10
def serialize(owner, test_name)
"#{owner} >> #{test_name}"
end
|
.tag_map ⇒ Object
70
71
72
|
# File 'lib/minitest/tagz.rb', line 70
def tag_map
@tag_map ||= {}
end
|