Added Repeat and listed necessary tests

This commit is contained in:
2024-09-24 12:31:38 -06:00
parent 447058020f
commit 9cab6d266d
3 changed files with 35 additions and 1 deletions

View File

@ -137,3 +137,10 @@ func TestLabel(t *testing.T) {
func TestEnd(t *testing.T) {
Todo(t)
}
func TestRepeat(t *testing.T) {
t.Run("fails when number of successes is less than minCount", Todo)
t.Run("succeeds when number of successes is greater than minCount", Todo)
t.Run("consumes iff at least one application consumes", Todo)
t.Run("fails on error", Todo)
}