]> begriffs open source - libtap/blob - t/todo.c
Declaration moved out of statement for C90 compliance.
[libtap] / t / todo.c
1 #include "tap.h"
2
3 int main () {
4     setvbuf(stdout, NULL, _IONBF, 0);
5     plan(6);
6     todo();
7     ok(0, "foo");
8     ok(1, "bar");
9     ok(1, "baz");
10     endtodo;
11     todo("im not ready");
12     ok(0, "quux");
13     ok(1, "thud");
14     ok(1, "wombat");
15     endtodo;
16     done_testing();
17 }
18