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.
 
 
 

17 lines
239 B

#!/usr/bin/perl
use strict;
use warnings;
use lib 'lib';
use Test::More tests => 2;
require_ok('App::WRT::Util');
ok(
App::WRT::Util::file_get_contents('example/files/include_me') =~ 'content',
'got contents of include_me'
);
1;