Skip to content

Instantly share code, notes, and snippets.

@tokenrove
Created July 14, 2017 16:35
Show Gist options
  • Save tokenrove/1485573773d928b3dc0121bdc6ff5290 to your computer and use it in GitHub Desktop.
Save tokenrove/1485573773d928b3dc0121bdc6ff5290 to your computer and use it in GitHub Desktop.
Minimal TAP output from expect/tcl
proc ok {string body} {
if {![[proc {} {} $body]]} { send_user "not " }
puts "ok - $string"
}
proc plan {n} {
puts "1..$n"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment