[Epydoc-commits] SF.net SVN: epydoc: [1582] trunk/epydoc/src/epydoc/test/docbuilder.doctest
Brought to you by:
edloper
|
From: <dva...@us...> - 2007-03-10 21:13:25
|
Revision: 1582
http://svn.sourceforge.net/epydoc/?rev=1582&view=rev
Author: dvarrazzo
Date: 2007-03-10 13:13:24 -0800 (Sat, 10 Mar 2007)
Log Message:
-----------
- Added test case for the SF bug #1678046. The test currently fails.
Modified Paths:
--------------
trunk/epydoc/src/epydoc/test/docbuilder.doctest
Modified: trunk/epydoc/src/epydoc/test/docbuilder.doctest
===================================================================
--- trunk/epydoc/src/epydoc/test/docbuilder.doctest 2007-03-10 17:56:29 UTC (rev 1581)
+++ trunk/epydoc/src/epydoc/test/docbuilder.doctest 2007-03-10 21:13:24 UTC (rev 1582)
@@ -360,3 +360,23 @@
| +- is_imported = True
+- z => VariableDoc for epydoc_test.z [4]
+- is_imported = False
+
+Merging the right value
+=======================
+Test for the SF bug #1678046. Check that, in case of mismatch between parsed
+and introspected versions of a value, other values don't get damaged.
+
+ >>> runbuilder(s='''
+ ... foo = None
+ ... bar = None
+ ...
+ ... def mangle():
+ ... global foo
+ ... foo = 'foo'
+ ...
+ ... mangle()
+ ... ''',
+ ... build="bar",
+ ... attribs="pyval")
+ GenericValueDoc [0]
+ +- pyval = None
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|