Module: Bacon::TestUnitOutput
- Defined in:
- lib/vendor/bacon.rb
Instance Method Summary collapse
- #handle_requirement(description) ⇒ Object
- #handle_specification(name) ⇒ Object
- #handle_summary ⇒ Object
Instance Method Details
#handle_requirement(description) ⇒ Object
58 59 60 61 62 63 64 65 |
# File 'lib/vendor/bacon.rb', line 58 def handle_requirement(description) error = yield if error.empty? print "." else print error[0..0] end end |
#handle_specification(name) ⇒ Object
56 |
# File 'lib/vendor/bacon.rb', line 56 def handle_specification(name) yield end |