[pygccxml-commit] SF.net SVN: pygccxml: [228] pyplusplus_dev/unittests
Brought to you by:
mbaas,
roman_yakovenko
From: <rom...@us...> - 2006-06-18 17:31:22
|
Revision: 228 Author: roman_yakovenko Date: 2006-06-18 10:31:12 -0700 (Sun, 18 Jun 2006) ViewCVS: http://svn.sourceforge.net/pygccxml/?rev=228&view=rev Log Message: ----------- adding test for default args Modified Paths: -------------- pygccxml_dev/pygccxml/declarations/filters.py pyplusplus_dev/unittests/test_all.py Modified: pygccxml_dev/pygccxml/declarations/filters.py =================================================================== --- pygccxml_dev/pygccxml/declarations/filters.py 2006-06-18 13:33:59 UTC (rev 227) +++ pygccxml_dev/pygccxml/declarations/filters.py 2006-06-18 17:31:12 UTC (rev 228) @@ -202,8 +202,6 @@ if not isinstance( decl, self.decl_type ): return False if not None is self.name: - if 'SubMeshLodGeometryLink' in decl.decl_string: - i = 0 if not self.check_name( decl ): return False if not None is self.header_dir and decl.location: Modified: pyplusplus_dev/unittests/test_all.py =================================================================== --- pyplusplus_dev/unittests/test_all.py 2006-06-18 13:33:59 UTC (rev 227) +++ pyplusplus_dev/unittests/test_all.py 2006-06-18 17:31:12 UTC (rev 228) @@ -53,6 +53,7 @@ import indexing_suites_tester import hierarchy3_tester import vector3_tester +import default_args_tester def create_suite(times): testers = [ @@ -102,7 +103,8 @@ , protected_tester , indexing_suites_tester , hierarchy3_tester - , vector3_tester + , vector3_tester + , default_args_tester ] main_suite = unittest.TestSuite() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |