module Minitest::Silence
Constants
- Error
- UnexpectedOutput
- VERSION
Public Class Methods
boxed(title, content)
click to toggle source
# File lib/minitest/silence_plugin.rb, line 47 def boxed(title, content) box = +"── #{title} ──\n" box << "#{content}\n" box << "───#{'─' * title.length}───\n" end