]> begriffs open source - libtap/blob - t/todo.c
Update license to GPLv2+ to be compatible with the Apache 2.0 license
[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     end_todo;
11     todo("im not ready");
12     ok(0, "quux");
13     ok(1, "thud");
14     ok(1, "wombat");
15     end_todo;
16     done_testing();
17 }
18