()
| 2779 | } |
| 2780 | |
| 2781 | func sampleTaskBlockRecord() TaskBlockRecord { |
| 2782 | return TaskBlockRecord{ |
| 2783 | ID: "block-1", |
| 2784 | TaskID: "task-1", |
| 2785 | Kind: taskpkg.BlockKindNeedsInput, |
| 2786 | Reason: "creator input", |
| 2787 | CreatedAt: fixedTestNow, |
| 2788 | CreatedBy: taskpkg.ActorIdentity{Kind: taskpkg.ActorKindHuman, Ref: "local-user"}, |
| 2789 | } |
| 2790 | } |
| 2791 | |
| 2792 | func sampleTaskInspectRecord(target string) TaskInspectRecord { |
| 2793 | now := time.Date(2026, 4, 17, 12, 30, 0, 0, time.UTC) |
no outgoing calls
no test coverage detected