diff options
Diffstat (limited to 'application/third_party/test-more-php/t/testertests_interp.php')
-rwxr-xr-x | application/third_party/test-more-php/t/testertests_interp.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/application/third_party/test-more-php/t/testertests_interp.php b/application/third_party/test-more-php/t/testertests_interp.php new file mode 100755 index 000000000..f646f81d8 --- /dev/null +++ b/application/third_party/test-more-php/t/testertests_interp.php @@ -0,0 +1,10 @@ +<?php + + $lib = 'Test-More.php'; + require_once($lib); + $t = new TestMore(); + $t->plan(1); + + $t->is( $t->interp(),'php',"interp defaults to php"); + +?> |