#!/usr/bin/perl -w
# Test that theme template file can include other files.

use gnump3d::files;


my $input = 'testThemeInclusion.data';

my @lines = &readFileWithExpansion( $input );

#
# Make sure the command has been executed.
#
foreach my $line ( @lines )
{
   if ( $line =~ /perl/ )
   {
	exit 0;
   }
}

exit 1;


