{
  "schema": "https://bars.commonsware.com/conformance/schema/render-fixture.schema.json",
  "version": "0.1.0",
  "cases": [
    {
      "name": "crlf-literal-preserved",
      "description": "Literal text containing CRLF line terminators is emitted byte-for-byte with no normalization.",
      "template": "line1\r\nline2",
      "expect": {
        "kind": "output",
        "expectedOutput": "line1\r\nline2"
      }
    },
    {
      "name": "lf-literal-preserved",
      "description": "Literal text containing LF line terminators is emitted byte-for-byte with no normalization.",
      "template": "line1\nline2",
      "expect": {
        "kind": "output",
        "expectedOutput": "line1\nline2"
      }
    },
    {
      "name": "bare-cr-literal-preserved",
      "description": "A lone carriage return in literal text is not a line break and is emitted verbatim.",
      "template": "a\rb",
      "expect": {
        "kind": "output",
        "expectedOutput": "a\rb"
      }
    }
  ]
}
