{
  "route": "/tools/poker/pot-odds/test-fixtures.json",
  "tool": "Poker Pot Odds Calculator",
  "model": "Pot Odds Model v1.0",
  "last_qa": "2026-05-19",
  "boundary": "Educational pot-odds price math only. Not call/fold advice, live assistance, rake, ICM, implied odds, legal status, account status, payout or stake advice.",
  "fixtures": [
    {
      "case": "hundred_pot_twentyfive_call",
      "input": {
        "potSize": 100,
        "callAmount": 25,
        "knownEquity": 30
      },
      "expected": {
        "potRatio": "25.00 to 125.00",
        "requiredEquity": "20.00%",
        "equityGap": "+10.00 percentage points",
        "coverage": "Price math only"
      }
    },
    {
      "case": "zero_call_invalid",
      "input": {
        "potSize": 100,
        "callAmount": 0,
        "knownEquity": 30
      },
      "expected": {
        "warning_contains": "call amount above zero"
      }
    },
    {
      "case": "no_known_equity",
      "input": {
        "potSize": 75,
        "callAmount": 25,
        "knownEquity": ""
      },
      "expected": {
        "requiredEquity": "25.00%",
        "equityGap": "No equity entered"
      }
    }
  ]
}
