{
  "schema": "https://bars.commonsware.com/conformance/schema/render-fixture.schema.json",
  "version": "0.1.0",
  "cases": [
    {
      "name": "plain-text",
      "description": "Plain text round-trips unchanged.",
      "template": "hello world",
      "expect": {
        "kind": "output",
        "expectedOutput": "hello world"
      }
    },
    {
      "name": "empty",
      "description": "An empty template renders as an empty string.",
      "template": "",
      "expect": {
        "kind": "output",
        "expectedOutput": ""
      }
    },
    {
      "name": "newlines-preserved",
      "description": "Embedded newlines and whitespace are emitted verbatim.",
      "template": "line1\nline2\n",
      "expect": {
        "kind": "output",
        "expectedOutput": "line1\nline2\n"
      }
    }
  ]
}
