diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-02-05 13:37:01 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-02-05 13:37:01 +0000 |
commit | 53edd7c363431dd82fce57f11df0b0131a7723e5 (patch) | |
tree | 8156b6bd392702337a94c3de70a4e0bbda68da03 /ext/XS-APItest/t | |
parent | 9c9388af520f163fd5d0ef576b56e7fe098e20b8 (diff) | |
download | perl-53edd7c363431dd82fce57f11df0b0131a7723e5.tar.gz |
Convert XS::APItest's svpv_magic.t to Test::More.
Diffstat (limited to 'ext/XS-APItest/t')
-rw-r--r-- | ext/XS-APItest/t/svpv_magic.t | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/XS-APItest/t/svpv_magic.t b/ext/XS-APItest/t/svpv_magic.t index 8be18d4020..2ea6941abd 100644 --- a/ext/XS-APItest/t/svpv_magic.t +++ b/ext/XS-APItest/t/svpv_magic.t @@ -1,7 +1,8 @@ #!perl -w + +use Test::More tests => 5; + BEGIN { - require '../../t/test.pl'; - plan(5); use_ok('XS::APItest') }; |