Home | History | Annotate | Download | only in YAMLParser
      1 # RUN: yaml-bench -canonical %s | FileCheck %s
      2 # CHECK: !!str "detected\n"
      3 # CHECK: !!str "\n\n# detected\n"
      4 # CHECK: !!str " explicit\n"
      5 # CHECK: !!str "\t\ndetected\n"
      6 
      7 - |
      8  detected
      9 - >
     10  
     11   
     12   # detected
     13 - |1
     14   explicit
     15 - >
     16  	
     17  detected
     18