added dummy modules B and C

This commit is contained in:
Pavol Rusnak 2011-05-01 11:37:46 +02:00
parent 1665de3ea7
commit 5401986edd
10 changed files with 130 additions and 3 deletions

View file

@ -1,5 +1,7 @@
from ModuleA import ModuleA
from ModuleB import ModuleB
from ModuleC import ModuleC
from ModuleDebug import ModuleDebug
def list():
return [ModuleDebug(),ModuleA()]
return [ModuleA(),ModuleB(),ModuleC(),ModuleDebug()]