1 2 3 4 5 6 7 8 9 10 11 12 13 14
use strict; use warnings FATAL => 'all'; use Apache::Test; use Apache::TestRequest; ## testing eval function plan tests => 1, need_php; my $expected = "Hello"; my $result = GET_BODY "/php/eval.php"; ok $result eq $expected;