Files
beads/cmd/bd/testdata/dep_add.txt
Travis Cline b17fcdbb2a Add scripttest-based integration tests (#59)
- Complete test coverage for all major bd commands:
  blocked, close, create, dep (add/remove/tree), export, help,
  import, init, list, quickstart, ready, show, stats, update, version
- Test data files validate command behavior and output
- Enables automated testing of full CLI workflows
2025-10-16 17:11:54 -07:00

11 lines
200 B
Plaintext

# Test bd dep add command
bd init --prefix test
bd create 'First issue'
bd create 'Second issue'
bd dep add test-2 test-1
stdout 'Added dependency'
bd show test-2
stdout 'Depends on'
stdout 'test-1'