Skip Menu |

This queue is for tickets about the Config-General CPAN distribution.

Report information
The Basics
Id: 50648
Status: resolved
Priority: 0/
Queue: Config-General

People
Owner: Nobody in particular
Requestors: perlboy [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 2.44
Fixed in: (no value)



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.
Single quotes will not removed by purpose.