Method: Tokyo#render_skips
- Defined in:
- lib/tokyo/run.rb
#render_skips ⇒ Object
117 118 119 120 121 122 123 124 125 |
# File 'lib/tokyo/run.rb', line 117 def render_skips return if skips.empty? puts puts bold.magenta('Skips:') skips.each do |skip| puts ' %s (%s)' % [blue(skip['reason'] || 'skip'), relative_location(skip['caller'])] end puts end |