Changes between Version 7 and Version 8 of QA
- Timestamp:
- 04/29/13 12:47:52 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
QA
v7 v8 41 41 These unit tests are meant to detect problems early during development, which means you should run them quite often while you're still working on the code (read: before and after every little change you make) rather than expecting them to be run during QA cycles. That again means you would more often need to run tests for particular modules than the whole suite. 42 42 43 For every module in {{{modules/s3}}} and {{{modules/ eden}}}, you can find the corresponding unit test module under {{{modules/unit_tests/eden}}} resp. {{{modules/unit_tests/s3}}} (if one exists).43 For every module in {{{modules/s3}}} and {{{modules/s3db}}}, you can find the corresponding unit test module under {{{modules/unit_tests/s3db}}} resp. {{{modules/unit_tests/s3}}} (if one exists). 44 44 45 45 To run tests for particular modules: … … 48 48 python web2py.py -S eden -M -R applications/eden/modules/unit_tests/s3/s3resource.py 49 49 # e.g. for modules in modules/eden 50 python web2py.py -S eden -M -R applications/eden/modules/unit_tests/ eden/pr.py50 python web2py.py -S eden -M -R applications/eden/modules/unit_tests/s3db/pr.py 51 51 }}} 52 52