# File lib/test/spec/dox.rb, line 66
      def test_started(name)
        return  if special_test? name

        contextname, @specname = unmangle name
        return  if contextname.nil? || @specname.nil?

        if @context != contextname
          @context = contextname

          @old_contexts = @contexts
          @contexts = @context.split("\t")

          common = 0
          @contexts.zip(@old_contexts) { |a, b|
            break  if a != b
            common += 1
          }

          nl  if common == 0

          @contexts[common..-1].each_with_index { |head, i|
            indent common + i
            output_heading head
          }
        end
        
        @assertions = @result.assertion_count
        @prevdisabled = @disabled
        output_item @specname
      end