Metadata-Version: 2.0
Name: rigor
Version: 0.1.1
Summary: rigor
Home-page: UNKNOWN
Author: UNKNOWN
Author-email: UNKNOWN
License: MIT license
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: addict (==2.1.1)
Requires-Dist: aiofiles (==0.3.1)
Requires-Dist: aiohttp (==2.1.0)
Requires-Dist: click (==6.7)
Requires-Dist: colorama (==0.3.9)
Requires-Dist: datadiff (==2.0.0)
Requires-Dist: jmespath (==0.9.3)
Requires-Dist: related (>=0.4)
Requires-Dist: structlog (==17.2.0)

rigor
=====

- Functional API Testing Framework
- Built with Python 3.6
- Multiple Purposes: Document API, Test API, Smoke/Functional/TDD, etc.
- Asynchronous (ayncio) collection (aiofiles) and execution (aiohttp)
- Cucumber-inspired Given/When/Then approach to test cases.
- Different from Cucumber because it is imperative. Tied explicitly to the
  API not the user stories.
- Declarative syntax using YAML test case descriptions
- Uses Jmespath for data extraction and less-brittle validation
- `status` expects a 2XX by default, but can be overridden in step request.
- `rigor` descends directories using file prefix and extensions
  (default `yml` and `yaml`).
- `tags` can be included (e.g. smoke) or excluded (e.g. broken).
- Asynchronous mode can be disabled by specifying `concurrency=1`
- Namespace __uuid__ for uniquely naming things in case of concurrency.
- Rendering using [mako: http://www.makotemplates.org/]
- Command-line with [click: http://click.pocoo.org/]


Setup
-----

```bash
$ pip install rigor
$ cd /path/to/directory/containing/tree/of/rigor/yamls/
$ rigor
```


HTML Reporting
--------------
Rigor returns a response that is cucumber formatted, and supports a




