fabro/test/scenario/command_pipeline.fabro
Bryan Helmkamp e5ec057b79 Expand scenario tests to cover more CLI subcommands
Add coverage for validate, model list, workflow list, doctor, exec,
ps, inspect, logs, rm, system df, asset list, asset cp, and cp.
Uses HOME isolation for run lifecycle tests and synthetic assets
for asset/cp testing.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-18 16:05:13 -04:00

12 lines
372 B
Text

digraph CommandPipeline {
graph [goal="Run two commands in sequence"]
rankdir=LR
start [shape=Mdiamond, label="Start"]
exit [shape=Msquare, label="Exit"]
step1 [label="Step 1", shape=parallelogram, script="echo hello-from-step1"]
step2 [label="Step 2", shape=parallelogram, script="echo hello-from-step2"]
start -> step1 -> step2 -> exit
}