Revision: 4274
Author: pekka.klarck
Date: Wed Oct 27 07:06:13 2010
Log: ooops, this lib is needed by tests added in prev commit
http://code.google.com/p/robotframework/source/detail?r=4274
Added:
/trunk/atest/testdata/test_libraries/module_lib_with_all.py
=======================================
--- /dev/null
+++ /trunk/atest/testdata/test_libraries/module_lib_with_all.py Wed Oct 27
07:06:13 2010
@@ -0,0 +1,15 @@
+from os.path import join, abspath
+
+__all__ = ['join_with_execdir', 'abspath', 'attr_is_not_kw',
+ '_not_kw_even_if_listed_in_all', 'extra stuff', None]
+
+def join_with_execdir(arg):
+ return join(abspath('.'), arg)
+
+def not_in_all():
+ pass
+
+attr_is_not_kw = 'Listed in __all__ but not a fuction'
+
+def _not_kw_even_if_listed_in_all():
+ print 'Listed in __all__ but starts with an underscore'