Metadata-Version: 2.1
Name: litmus
Version: 1.0.1
Summary: Autogenerate pytest unit test skeletons from your existing modules.
Home-page: https://github.com/edwardcjohnson/litmus
Author: Edward Johnson
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/edwardcjohnson/litmus/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# litmus
litmus is designed to create a unit test skeleton based on existing functions.

## Usage
```
import litmus.compose
litmus.compose.compose_test_module_skeleton("my_module.py")
```

Similar projects include:
* https://github.com/laffra/auger
* https://pypi.org/project/pythoscope/


