Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/claudiob/adminlettuce
Displays lettuce features as documentation in Django admin
https://github.com/claudiob/adminlettuce
Last synced: 17 days ago
JSON representation
Displays lettuce features as documentation in Django admin
- Host: GitHub
- URL: https://github.com/claudiob/adminlettuce
- Owner: claudiob
- License: mit
- Created: 2011-06-14T18:37:00.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-04-22T21:06:13.000Z (over 13 years ago)
- Last Synced: 2024-12-05T13:26:55.429Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 78.1 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
- Changelog: HISTORY.txt
- License: LICENSE.txt
Awesome Lists containing this project
README
# Admin documentation for lettuce-generated integration tests.
This module integrates lettuce (http://www.lettuce.it) support for Django by
printing out the content of the features and scenarios to the Django admin
interface.The goal is to make the final user aware of the specifications and requirements
of the application without having to browse the source code.To install this module in a Django application with lettuce features:
* install the module (for instance, using pip)
* add 'adminlettuce' to the INSTALLED_APPS in settings.py
* add a route to 'adminlettuce' in urls.py, for instance:
(r'^admin/features/', include('adminlettuce.urls')),