use strict; use warnings FATAL => 'all'; use Apache::Test; use Apache::TestRequest; plan tests => 1, need_php; ## subtract.php source: ## ## ## result should be '10' (27-7-10=10) my $result = GET_BODY "/php/subtract.php"; ok $result eq '10';