Subject: | Single quotes are not removed from parsed configuration |
use Config::General;
use Test::More tests => 1;
my $conf = new Config::General(
-String => q{FOO = '$foo'}
);
my %all = $conf->getall;
print "[$all{FOO}]\n";
ok($all{FOO} eq '$foo');
1..1
['$foo']
not ok 1
# Failed test in ttt at line 11.
# Looks like you failed 1 test of 1.