{
  "schema": "https://bars.commonsware.com/conformance/schema/env-property-fixture.schema.json",
  "version": "0.1.0",
  "cases": [
    {
      "name": "env-now-default",
      "description": "@env/now renders the clock-seeded instant as an ISO 8601 string.",
      "template": "{{ @env/now }}",
      "clock": "2026-06-22T12:00:00Z",
      "expect": {
        "kind": "output",
        "expectedOutput": "2026-06-22T12:00:00Z"
      },
      "spotlight": true
    },
    {
      "name": "env-now-format",
      "description": "@env/now keeps its DateTime type into the format_date_time transform.",
      "template": "{{ @env/now | format_date_time: 'yyyy' }}",
      "clock": "2026-06-22T12:00:00Z",
      "expect": {
        "kind": "output",
        "expectedOutput": "2026"
      },
      "spotlight": true
    },
    {
      "name": "env-now-subpointer-empty",
      "description": "A sub-pointer into a non-Element property (the DateTime now) renders empty.",
      "template": "{{ @env/now/foo }}",
      "clock": "2026-06-22T12:00:00Z",
      "expect": {
        "kind": "output",
        "expectedOutput": ""
      }
    }
  ]
}
