diff options
author | Paul LeoNerd Evans <leonerd@leonerd.org.uk> | 2011-03-31 12:11:19 +0100 |
---|---|---|
committer | Paul LeoNerd Evans <leonerd@leonerd.org.uk> | 2011-03-31 12:11:19 +0100 |
commit | 3bbda921b7180340ccc50c1a8a2bf01631508f36 (patch) | |
tree | 787f87e96597293bff639162ccb4a67c59fcb8eb /t/taplib.h | |
parent | 620038af7274a338160e9ad0a787cc21e4fc64ea (diff) | |
download | termo-3bbda921b7180340ccc50c1a8a2bf01631508f36.tar.gz termo-3bbda921b7180340ccc50c1a8a2bf01631508f36.tar.xz termo-3bbda921b7180340ccc50c1a8a2bf01631508f36.zip |
Created a little Test::More-like library for TAP testing
Diffstat (limited to 't/taplib.h')
-rw-r--r-- | t/taplib.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/t/taplib.h b/t/taplib.h new file mode 100644 index 0000000..16e41b6 --- /dev/null +++ b/t/taplib.h @@ -0,0 +1,3 @@ +void plan_tests(int n); +void ok(int cmp, char *name); +int exit_status(void); |