comparison tests/analyzers/_allowed_dependencies.py @ 0:4a0efb7baf70

* Datasets becomes the new trunk and retires after that :-)
author mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222
date Sun, 29 Jun 2008 18:44:17 +0000
parents
children 81641655bc38
comparison
equal deleted inserted replaced
-1:000000000000 0:4a0efb7baf70
1 # the following dictionary defines the allowed dependencies checked while testing
2 # format = module -> allowed dependencies from this module
3 ALLOWED_MODULE_DEPS = {
4 'controller': ('model', 'eventchannel', 'gui', 'video', 'loaders', 'view', 'audio', 'util', 'vfs', 'pathfinder'),
5 'model': ('util', 'eventchannel'),
6 'eventchannel': ('util',),
7 'gui': ('eventchannel', 'util', 'video', 'vfs'),
8 'video': ('util',),
9 'loaders': ('audio', 'video', 'vfs', 'xml', 'util', 'view', 'model'),
10 'view': ('model', 'video', 'util', 'audio', 'eventchannel'),
11 'audio': ('util', 'vfs'),
12 'util': ['engine'],
13 'vfs': ('util',),
14 'xml': ('vfs', 'util'),
15 'pathfinder': ('util', 'model'),
16 }