spec-02-24.test 517 B

123456789101112131415161718192021
  1. # RUN: yaml-bench -canonical %s | FileCheck %s
  2. %TAG ! tag:clarkevans.com,2002:
  3. --- !shape
  4. # Use the ! handle for presenting
  5. # tag:clarkevans.com,2002:circle
  6. - !circle
  7. center: &ORIGIN {x: 73, y: 129}
  8. radius: 7
  9. - !line
  10. start: *ORIGIN
  11. finish: { x: 89, y: 102 }
  12. - !label
  13. start: *ORIGIN
  14. color: 0xFFEEBB
  15. text: Pretty vector drawing.
  16. #CHECK: !<tag:clarkevans.com,2002:shape>
  17. #CHECK: !<tag:clarkevans.com,2002:circle>
  18. #CHECK: !<tag:clarkevans.com,2002:line>
  19. #CHECK: !<tag:clarkevans.com,2002:label>