#include "../tap.h" int main () { plan(6); todo(); ok(0, "foo"); ok(1, "bar"); ok(1, "baz"); endtodo; todo("im not ready"); ok(0, "quux"); ok(1, "thud"); ok(1, "wombat"); endtodo; return exit_status(); }