Framework for test development
Project description
About
This is framework for functional test development. Who is needing to him? The target audience is test developers. You can use the framework for unit testing and how you wish but him made for functional testing web servers and web applications.
Installation
pip install seismograph
Quick start
import seismograph
suite = seismograph.Suite(__name__)
@suite.register
def my_first_test(case):
case.assertion.equal(1, 1)
if __name__ == '__main__':
seismograph.main()
Run tests
seismograph /path/to/suites/
or like
python -m seismograph /path/to/suites/
Async run
multiprocessing
threading
gevent (for python 2 only)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
seismograph-0.0.12.tar.gz
(48.5 kB
view hashes)