# File test_format.rb, line 565
  def test_twelve
    puts "test 12"
    f = []
    f.push( '<?xml version="1.0"?>' )
    f.push( '@@@ Paul @@@ }Rubel @< @|| @#.#' )
    f.push( 'var_one,var_one,var_one,var_one,var_one,var_one,' +
           ' var_two, var_three, var_four')
    f.push( '@<<< @<<<')
    f.push( 'var_one,var_one')
    0.upto(1) do |x|
      format = Format.new(f)
      format.useHash(x == 0)      
      pictures = format.getPictureLines
      assert(pictures.size == 3)

      helper_test_twelve(format, "format_testfile12-#{x}")
    end
  end