]> git.vpit.fr Git - perl/modules/Sub-Op.git/commitdiff
Properly chomp the testcases
authorVincent Pit <vince@profvince.com>
Sun, 3 Jan 2010 16:01:40 +0000 (17:01 +0100)
committerVincent Pit <vince@profvince.com>
Sun, 3 Jan 2010 16:01:40 +0000 (17:01 +0100)
t/10-base.t
t/11-existing.t

index c1760c104e47e477750cb8b9db294868715a2435..62659d4f7a686fef078f9432e1a4e58d0ff7bfb3 100644 (file)
@@ -12,6 +12,9 @@ our $called;
 {
  local $/ = "####\n";
  while (<DATA>) {
+  chomp;
+  s/\s*$//;
+
   my ($code, $params)           = split /----\s*/, $_;
   my ($names, $ret, $exp, $seq) = split /\s*#\s*/, $params;
 
index 0339bc850b391436f5fe1d7beb6bf97071f58562..ecc673ef7738745f6d94bff143f8d2410f4f9ac2 100644 (file)
@@ -18,6 +18,9 @@ our $called;
 {
  local $/ = "####\n";
  while (<DATA>) {
+  chomp;
+  s/\s*$//;
+
   my ($code, $params)           = split /----\s*/, $_;
   my ($names, $ret, $exp, $seq) = split /\s*#\s*/, $params;