summaryrefslogtreecommitdiffstats
path: root/debian/perl-framework/t/php/inheritance.t
blob: a5bd7d3c4e8a38cd8f0d130989f405ee1dfccefe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use strict;
use warnings FATAL => 'all';

use Apache::Test;
use Apache::TestRequest;

plan tests => 1, need_php;

my $expected = <<EXPECT;
This is class foo
a = 2
b = 5
10
-----
This is class bar
a = 4
b = 3
c = 12
12
EXPECT

my $result = GET_BODY "/php/inheritance.php";
ok $result eq $expected