fails(not implemented, jruby/jruby#6149):TracePoint#enable without a block returns true if trace was enabled
fails(not implemented, jruby/jruby#6149):TracePoint#enable target: option enables trace point for specific location
fails(not implemented, jruby/jruby#6149):TracePoint#enable target: option traces all the events triggered in specified location
fails(not implemented, jruby/jruby#6149):TracePoint#enable target: option does not trace events in nested locations
fails(not implemented, jruby/jruby#6149):TracePoint#enable target: option traces some events in nested blocks
fails(not implemented, jruby/jruby#6149):TracePoint#enable target: option raises ArgumentError if target object cannot trigger specified event
fails(not implemented, jruby/jruby#6149):TracePoint#enable target: option raises ArgumentError if passed not Method/UnboundMethod/Proc
fails(not implemented, jruby/jruby#6149):TracePoint#enable target: option option value accepts Method
fails(not implemented, jruby/jruby#6149):TracePoint#enable target: option option value accepts UnboundMethod
fails(not implemented, jruby/jruby#6149):TracePoint#enable target: option option value accepts Proc
fails(not implemented, jruby/jruby#6149):TracePoint#enable target: option nested enabling and disabling raises ArgumentError if trace point already enabled with target is re-enabled with target
fails(not implemented, jruby/jruby#6149):TracePoint#enable target: option nested enabling and disabling raises ArgumentError if trace point already enabled without target is re-enabled with target
fails(not implemented, jruby/jruby#6149):TracePoint#enable target: option nested enabling and disabling raises ArgumentError if trace point already enabled with target is re-enabled without target
fails(not implemented, jruby/jruby#6149):TracePoint#enable target: option nested enabling and disabling raises ArgumentError if trace point already enabled with target is disabled with block
fails(not implemented, jruby/jruby#6149):TracePoint#enable target: option nested enabling and disabling traces events when trace point with target is enabled in another trace point enabled without target
fails(not implemented, jruby/jruby#6149):TracePoint#enable target: option nested enabling and disabling traces events when trace point with target is enabled in another trace point enabled with target
fails(not implemented, jruby/jruby#6149):TracePoint#enable target: option nested enabling and disabling traces events when trace point without target is enabled in another trace point enabled with target
fails(not implemented, jruby/jruby#6149):TracePoint#enable target_line: option traces :line events only on specified line of code
fails(not implemented, jruby/jruby#6149):TracePoint#enable target_line: option raises ArgumentError if :target option isn't specified
fails(not implemented, jruby/jruby#6149):TracePoint#enable target_line: option raises ArgumentError if :line event isn't registered
fails(not implemented, jruby/jruby#6149):TracePoint#enable target_line: option raises ArgumentError if :target_line value is out of target code lines range
fails(not implemented, jruby/jruby#6149):TracePoint#enable target_line: option raises TypeError if :target_line value couldn't be coerced to Integer
fails(not implemented, jruby/jruby#6149):TracePoint#enable target_line: option raises ArgumentError if :target_line value is negative
fails(not implemented, jruby/jruby#6149):TracePoint#enable target_line: option accepts value that could be coerced to Integer
fails:TracePoint#enable when nested enables both TracePoints but only calls the respective callbacks
debug:TracePoint#enable without a block returns false if trace was disabled
debug:TracePoint#enable without a block returns true if trace was already enabled
debug:TracePoint#enable with a block enables the trace object within a block
debug:TracePoint#enable with a block enables the trace object for any thread
debug:TracePoint#enable with a block can accept arguments within a block but it should not yield arguments
debug:TracePoint#enable with a block disables the trace object outside the block
