diff options
author | John Coggeshall <john@php.net> | 2005-03-05 01:13:10 +0000 |
---|---|---|
committer | John Coggeshall <john@php.net> | 2005-03-05 01:13:10 +0000 |
commit | 5fe241ff64eb5376b35a06eb5f37fb93c51fac2d (patch) | |
tree | a2968dc644869cdfa9ca7a732ddc62c08681173e /ext/skeleton | |
parent | f8fc9a3256d5c03dbf269099887f482cf776122d (diff) | |
download | php-git-5fe241ff64eb5376b35a06eb5f37fb93c51fac2d.tar.gz |
Starting tests....
Diffstat (limited to 'ext/skeleton')
-rw-r--r-- | ext/skeleton/tests/001.phpt | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/ext/skeleton/tests/001.phpt b/ext/skeleton/tests/001.phpt index a375577e1b..bff99da3ea 100644 --- a/ext/skeleton/tests/001.phpt +++ b/ext/skeleton/tests/001.phpt @@ -1,21 +1,10 @@ --TEST-- -Check for extname presence +Check for xmlrpci presence --SKIPIF-- -<?php if (!extension_loaded("extname")) print "skip"; ?> +<?php if (!extension_loaded("xmlrpci")) print "skip"; ?> --FILE-- <?php -echo "extname extension is available"; -/* - you can add regression tests for your extension here - - the output of your test code has to be equal to the - text in the --EXPECT-- section below for the tests - to pass, differences between the output and the - expected text are interpreted as failure - - see php5/README.TESTING for further information on - writing regression tests -*/ +echo "Improved XML-RPC extension is available"; ?> --EXPECT-- -extname extension is available +Improved XML-RPC extension is available |