Changeset 5578
- Timestamp:
- 10/22/08 13:06:29 (3 months ago)
- Files:
-
- trunk/tg/lib/base.py (modified) (1 diff)
- trunk/tg/lib/helpers.py (modified) (1 diff)
- trunk/tg/lib/__init__.py (modified) (1 diff)
- trunk/tg/tests/test_stack/config (added)
- trunk/tg/tests/test_stack/config/controllers (moved) (moved from trunk/tg/tests/test_stack/controllers)
- trunk/tg/tests/test_stack/config/controllers/__init__.py (copied) (copied from trunk/tg/tests/test_stack/controllers/__init__.py)
- trunk/tg/tests/test_stack/config/controllers/root.py (copied) (copied from trunk/tg/tests/test_stack/controllers/root.py)
- trunk/tg/tests/test_stack/config/controllers/templates (moved) (moved from trunk/tg/tests/test_stack/templates)
- trunk/tg/tests/test_stack/config/controllers/templates/index.html (copied) (copied from trunk/tg/tests/test_stack/templates/index.html)
- trunk/tg/tests/test_stack/config/public (added)
- trunk/tg/tests/test_stack/test_config.py (modified) (1 diff)
- trunk/TODO.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tg/lib/base.py
r5527 r5578 1 """Pylons requires that packages have a lib.base and lib.helpers 2 3 4 So we've added on here so we can run tests in the context of the tg 5 package itself, pylons will likely remove this restriction before 1.0 6 and this module can then be removed. 7 8 """ trunk/tg/lib/helpers.py
r5527 r5578 1 """Pylons requires that packages have a lib.base and lib.helpers 2 3 4 So we've added on here so we can run tests in the context of the tg 5 package itself, pylons will likely remove this restriction before 1.0 6 and this module can then be removed. 7 8 """ trunk/tg/lib/__init__.py
r5527 r5578 1 """Pylons requires that packages have a lib.base and lib.helpers 2 3 4 So we've added on here so we can run tests in the context of the tg 5 package itself, pylons will likely remove this restriction before 6 1.0 and this package can then be removed. 7 8 """ trunk/tg/tests/test_stack/test_config.py
r5527 r5578 22 22 23 23 root = "." 24 test_base_path = os.path.join(root,'tg', 'tests', 'test_stack') 24 test_base_path = os.path.join(root,'tg', 'tests', 25 'test_stack', 'config') 26 25 27 self.paths=tg.util.Bunch(root=test_base_path, 26 28 controllers=os.path.join(test_base_path, 'controllers'), 27 29 static_files=os.path.join(test_base_path, 'public'), 28 templates=[os.path.join(test_base_path, ' templates')]30 templates=[os.path.join(test_base_path, 'config_templates')] 29 31 ) 30 32 trunk/TODO.txt
r5520 r5578 2 2 ===== 3 3 4 * transaction middleware, pre-configured for a transaction-per-request model5 with auto-rollback and auto-commit6 4 * Upgrade Guide 7 8 * Add sample tests to TurboGears paster template (use nose style setup functions)9 5 10 6 * Create TG2 Docs on the Wiki