Changeset 2218
- Timestamp:
- 12/28/08 08:59:38 (3 years ago)
- Location:
- trunk/Padre/t
- Files:
-
- 5 added
- 1 edited
-
75-perl-beginner.t (modified) (1 diff)
-
files/beginner/boolean_expression_or.pl (added)
-
files/beginner/boolean_expression_pipes.pl (added)
-
files/beginner/chomp.pl (added)
-
files/beginner/match_default_scalar.pl (added)
-
files/beginner/substitute_in_map.pl (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Padre/t/75-perl-beginner.t
r2213 r2218 20 20 BEGIN { 21 21 %tests = ( 22 'split1.pl' => "The second parameter of split is a string, not an array", 23 'split2.pl' => "The second parameter of split is a string, not an array", 24 'warning.pl' => "You need to write use warnings (with an s at the end) and not use warning.", 22 'split1.pl' => "The second parameter of split is a string, not an array", 23 'split2.pl' => "The second parameter of split is a string, not an array", 24 'warning.pl' => "You need to write use warnings (with an s at the end) and not use warning.", 25 'boolean_expressions_or.pl' => 'TODO', 26 'boolean_expressions_pipes.pl' => 'TODO', 27 'match_default_scalar.pl' => 'TODO', 28 'chomp.pl' => 'TODO', 29 'substitute_in_map.pl' => 'TODO', 25 30 ); 26 31 } 27 32 28 33 foreach my $file (keys %tests) { 34 if ($tests{$file} eq 'TODO') { 35 TODO: { 36 local $TODO = "$file not yet implemented"; 37 ok(0); 38 ok(0); 39 } 40 next; 41 } 42 29 43 my $data = slurp (File::Spec->catfile('t', 'files', 'beginner', $file)); 30 44 ok(! defined($b->check($data)), $file);
Note: See TracChangeset
for help on using the changeset viewer.
