Task
📝 **Question:** Run the prepared todo-app over six commands so the test exercises three boundary states:\n - \`list\` on an empty store (boundary 1)\n - two \`add\`s and one \`done\` (canonical mixed state)\n - a final \`done\` so every todo is complete (boundary 2)\n\nThe list output should be deterministic JSON (sort_keys=True).\nExpected:\n[]\nadded 1\nadded 2\ndone 1\n[{"done": true, "id": 1, "text": "buy milk"}, {"done": false, "id": 2, "text": "ship it"}]\ndone 2\n[{"done": true, "id": 1, "text": "buy milk"}, {"done": true, "id": 2, "text": "ship it"}]
📋 Pick the right answer.
💡 **Hint:** Re-read the theory above if unsure.