π¦ ClawHub
Nm Sanctum Test Updates
by @athola
Update, generate, and validate tests using git-workspace-review for change context
π‘ Examples
BDD-Style Test Generation
See modules/bdd-patterns.md for additional patterns.
class TestGitWorkflow:
"""BDD-style tests for Git workflow operations.""" def test_commit_workflow_with_staged_changes(self):
"""
GIVEN a Git repository with staged changes
WHEN the user runs the commit workflow
THEN it should create a commit with proper message format
AND all tests should pass
"""
# Test implementation following TDD principles
pass
Verification: Run pytest -v to verify tests pass.Test Enhancement
See modules/test-enhancement.md for enhancement strategies.
TERMINAL
clawhub install nm-sanctum-test-updates