1use Apache::ASP::CGI;
2use strict;
3
4&Apache::ASP::CGI::do_self(NoState => 1);
5
6__END__
7<%
8eval { $Response->TrapInclude('.'); };
9$t->eok($@, "should be error");
10
11eval { $Response->TrapInclude('include.inc'); };
12$t->eok(! $@, "should not be error");
13
14%>
15
16