Changeset 7865 for trunk/PS-IPP-Metadata-Config/t/02_examples.t
- Timestamp:
- Jul 11, 2006, 4:49:53 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/PS-IPP-Metadata-Config/t/02_examples.t (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/PS-IPP-Metadata-Config/t/02_examples.t
r3842 r7865 3 3 # Copyright (C) 2005 Joshua Hoblitt 4 4 # 5 # $Id: 02_examples.t,v 1. 4 2005-05-04 22:08:08jhoblitt Exp $5 # $Id: 02_examples.t,v 1.5 2006-07-12 02:49:53 jhoblitt Exp $ 6 6 7 7 use strict; … … 12 12 #$::RD_TRACE = 1; 13 13 14 use Test::More tests => 6;14 use Test::More tests => 9; 15 15 use PS::IPP::Metadata::Config; 16 16 17 17 my $config_parser = PS::IPP::Metadata::Config->new; 18 19 { 20 my $config = $config_parser->parse(undef); 21 is($config, undef, "parsing undef returns undef"); 22 } 23 24 { 25 my $config = $config_parser->parse(''); 26 is($config, undef, "parsing an empty string returns undef"); 27 } 28 29 { 30 my $config = $config_parser->parse("\n\n\n\n\n"); 31 is($config, undef, "parsing an empty string returns undef"); 32 } 18 33 19 34 {
Note:
See TracChangeset
for help on using the changeset viewer.
