Pipp is Parrot's PHP and it has small test suite that lives alongside the code in the Parrot repository. Most of the test scripts are written in Perl 5 using the Parrot::Test modules. So usually I tell Pipp to run some PHP code and check whether the expected result is printed. This works fine but is not very exiting.
More exciting, for some definition of exciting, is to run PHP scripts and emit TAP with a testing lib implemented in PHP. So Pipp this needs
Over the next days I plan to port a selection of the easier scripts to PHP. Things like TODO, SKIP and regex matching have to wait for later. Takers welcome!
Re:Parrot
Bernhard on 2008-11-28T08:23:41
Right now I know of no example where libraries are written in another high level language. But it is definitly the plan to make this possible.
Implementing the testing library in PHP is of course also driving the development of Pipp. For example I got reminded that Pipp had no support for parameters of user defined functions.Re:Parrot
chromatic on 2008-11-29T04:14:14
Pheme has used the PIR Test::More for a couple of years. All of Pheme's tests are written in Pheme.