This commit is contained in:
Rafael.Timmerberg 2013-06-28 01:01:41 +02:00
commit f2b0737249
5 changed files with 90 additions and 0 deletions

1
test/lib/__init__.py Normal file
View file

@ -0,0 +1 @@
__author__ = 'rafael'

9
test/lib/dummy.py Normal file
View file

@ -0,0 +1,9 @@
__author__ = 'rafael'
class Dummy(object):
def __init__(self, **kwargs):
self.args = kwargs
def create(args):
return Dummy(**args)