diff --git a/test-tc.py b/test-tc.py
index d0c7597..035a2a7 100755
--- a/test-tc.py
+++ b/test-tc.py
@@ -3,7 +3,7 @@
 # Copyright (c) 2003-2004 TundraWare Inc.  All Rights Reserved.
 
 PROGNAME = "tconfpy Test Driver"
-RCSID = "$Id: test-tc.py,v 1.128 2004/04/07 08:12:37 tundra Exp $"
+RCSID = "$Id: test-tc.py,v 1.129 2004/04/07 08:32:50 tundra Exp $"
 VERSION = RCSID.split()[2]
 
 # Copyright Information
@@ -95,6 +95,15 @@
 symtbl["MyComplex1"] = mc1
 symtbl["MyComplex2"] = mc2
 
+# Just for fun, define an initial namespace and
+# some other "legal" namespaces for use in testing
+# the AllowNewNamespaces option of the API
+
+des = VarDescriptor()
+des.Value = ""           # This is the initial namespace
+des.LegalVals = ["NS1", "NS2"]
+symtbl["NAMESPACE"] = des
+
 
 #---------------------------------------------------------------------------#
 # Nothing Else Should Need Changing Below Here