require_relative 'helper' class TestCapture < Test::Unit::TestCase P = Processing def capture(*args, **kwargs) P::Capture.new(*args, **kwargs) end def test_inspect() assert_match %r|#|, capture.inspect end end# TestCapture