Pragmatic BDD Framework
Project description
Vedro
(!) Work in progress, internal breaking changes (for plugins) are possible until v2.0 is released
Installation
$ pip3 install vedro
Usage
# ./scenarios/decode_base64_encoded_string.py
import base64
import vedro
class Scenario(vedro.Scenario):
subject = "decode base64 encoded string"
def given(self):
self.encoded = "YmFuYW5h"
def when(self):
self.decoded = base64.b64decode(self.encoded)
def then(self):
assert self.decoded == b"banana"
$ vedro run
Documentation
🚀 vedro.io
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
vedro-1.9.0.tar.gz
(48.0 kB
view hashes)
Built Distribution
vedro-1.9.0-py3-none-any.whl
(86.6 kB
view hashes)