Index: trunk/PS-IPP-Metadata-Config/t/08_strings.t
===================================================================
--- trunk/PS-IPP-Metadata-Config/t/08_strings.t	(revision 9849)
+++ trunk/PS-IPP-Metadata-Config/t/08_strings.t	(revision 14032)
@@ -3,5 +3,5 @@
 # Copyright (C) 2006  Joshua Hoblitt
 #
-# $Id: 08_strings.t,v 1.2 2006-11-04 01:25:32 jhoblitt Exp $
+# $Id: 08_strings.t,v 1.3 2007-07-06 02:27:32 jhoblitt Exp $
 
 use strict;
@@ -12,5 +12,5 @@
 #$::RD_TRACE = 1;
 
-use Test::More tests => 4;
+use Test::More tests => 6;
 use PS::IPP::Metadata::Config;
 
@@ -74,2 +74,13 @@
     is_deeply( $config, $tree, "NULL str structure" );
 }
+
+{
+my $example =<<END;
+mystr   STR     # some comment
+END
+
+    my $config = $config_parser->parse( $example );
+    ok(!defined( $config ), "STR without value");
+
+    is_deeply( $config, undef, "NULL str structure" );
+}
