Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jc2k/sashimi
Tools for doing mean things to Zope/Plone
https://github.com/jc2k/sashimi
Last synced: 7 days ago
JSON representation
Tools for doing mean things to Zope/Plone
- Host: GitHub
- URL: https://github.com/jc2k/sashimi
- Owner: Jc2k
- Created: 2011-09-05T19:32:17.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-09-28T19:30:42.000Z (over 13 years ago)
- Last Synced: 2024-11-08T18:53:11.445Z (2 months ago)
- Language: Python
- Homepage:
- Size: 941 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.txt
Awesome Lists containing this project
README
Sashimi
=======Sashimi is an automatic and dynamic test case for finding and breaking untested
code paths in your application. It uses fuzzing techniques combined with
knowledge of how content types fit together in order to build a test site
with random content and then spiders it to find broken views.This is not 'production ready'; its something i hacked together whilst learning Plone.
Adding to test suite
--------------------Add a new test module to your project::
from myapp import BaseTestCase
from sashimi.testsuite import TestSuiteclass TestCaseMixin(BaseTestCase):
def afterSetUp(self):
passdef beforeTearDown(self):
passdef test_suite():
return TestSuite(TestCaseMixin)