diff options
author | Reini Urban <rurban@x-ray.at> | 2011-07-17 22:50:06 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-07-17 23:02:30 -0700 |
commit | d7dd272c4d8ca989fc8eadb0adfb9494fc91ee1e (patch) | |
tree | b72cfdd650f0ea58fc4354c8f38d3a21535e4926 /ext/XS-APItest/t | |
parent | 720247110fcd72c65cfbc66db35b9a5cb4a3b5ba (diff) | |
download | perl-d7dd272c4d8ca989fc8eadb0adfb9494fc91ee1e.tar.gz |
Actually test cop_*_label
Diffstat (limited to 'ext/XS-APItest/t')
-rw-r--r-- | ext/XS-APItest/t/coplabel.t | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ext/XS-APItest/t/coplabel.t b/ext/XS-APItest/t/coplabel.t new file mode 100644 index 0000000000..8f0e0e3970 --- /dev/null +++ b/ext/XS-APItest/t/coplabel.t @@ -0,0 +1,10 @@ +use warnings; +use strict; +use Test::More tests => 1; + +use XS::APItest; + +XS::APItest::test_coplabel(); +ok 1; + +1; |