18 Nov
2005
18 Nov
'05
7:25 p.m.
test framework: <dtml-var standard_html_header> <dtml-var expr="eproc()"> <dtml-var standard_html_footer> Setup an external method def eproc( self ): return 'hello world' and run the test method. It prints hello world Now, change the test method def eproc( self ): return 'hello world too' and run the test method. It prints hello world which is a deviation from the usual Zope2 behavior. To adopt the code for the modified method the external method needs to be resaved. Is this a bug or a feature? --