{
  "schema": "https://bars.commonsware.com/conformance/schema/render-fixture.schema.json",
  "version": "0.1.0",
  "cases": [
    {
      "name": "raw-block-text",
      "description": "Raw block body is emitted verbatim.",
      "template": "{{{{ hello }}}}",
      "expect": {
        "kind": "output",
        "expectedOutput": " hello "
      }
    },
    {
      "name": "raw-block-with-fake-tags",
      "description": "Raw block preserves inner mustache-like text without parsing.",
      "template": "{{{{ {{ x }} }}}}",
      "expect": {
        "kind": "output",
        "expectedOutput": " {{ x }} "
      }
    },
    {
      "name": "empty-raw-block",
      "description": "An empty raw block produces no output.",
      "template": "{{{{}}}}",
      "expect": {
        "kind": "output",
        "expectedOutput": ""
      }
    }
  ]
}
