]> begriffs open source - libtap/blob - t/synopsis.c
Create shared objects by default
[libtap] / t / synopsis.c
1 #include "tap.h"
2
3 int main () {
4     setvbuf(stdout, NULL, _IONBF, 0);
5     plan(5);
6     ok(3 == 3);
7     is("fnord", "eek", "two different strings not that way?");
8     ok(3 <= 8732, "%d <= %d", 3, 8732);
9     like("fnord", "f(yes|no)r*[a-f]$");
10     cmp_ok(3, ">=", 10);
11     done_testing();
12 }
13