[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/ZMI/tests - testZMIViewUtility.py:1.1.2.13

Jim Fulton jim@zope.com
Mon, 10 Jun 2002 10:52:17 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/ZMI/tests
In directory cvs.zope.org:/tmp/cvs-serv30254/lib/python/Zope/App/ZMI/tests

Modified Files:
      Tag: Zope-3x-branch
	testZMIViewUtility.py 
Log Message:
Implemented:

http://dev.zope.org/Wikis/DevSite/Projects/ComponentArchitecture/PathNamespaceQualificationSyntax

without a short-hand syntax for the creation namespace which may go
away.



=== Zope3/lib/python/Zope/App/ZMI/tests/testZMIViewUtility.py 1.1.2.12 => 1.1.2.13 ===
                 ('l2', 'a2/a3'),
                 ('lbad', 'abad'),
-                ('l3', 'view::a3'),]
+                ('l3', '@@a3'),]
 
 class I(Interface): pass
 class C:
@@ -82,7 +82,7 @@
         self.assertEqual(v.getZMIViews(),
                          [{'label':'l1', 'action':'a1'},
                           {'label':'l2', 'action':'a2/a3'},
-                          {'label':'l3', 'action':'view::a3'}
+                          {'label':'l3', 'action':'@@a3'}
                           ])
 
 class Request: