Almost-minimal filesystem based blog.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
295 B

#!/usr/bin/env perl
use strict;
use warnings;
use lib 'lib';
use Test::Simple tests => 1; # last test to print
use App::WRT;
my $w = App::WRT->new;
# 'configuration';
my $perlcode = $w->eval_perl("IS <perl>return 'TRUE';</perl>");
ok ($perlcode eq 'IS TRUE', 'eval_perl in line_parse');
1;