A python test spec based on pytest
Project description
The pySpec plugin transforms the pytest output into RSpec.
Just nest your tests using classes and include docstring for each class and test. You can create any nested levels.
The following test sample:
import pytest
class TestHouse:
"a House"
def test_door(self):
"has door"
assert 1 == 1
class TestTwoFloors:
"""with two floors
A house with two floor has stairs
"""
def test_stairs(self):
"has stairs"
assert 1 == 1
def test_second_floor(self):
"has second floor"
assert 1 == 1
def test_third_floor(self):
"has third floor"
assert 1 == 2
Generates the following output:
test/test_sample.py
A house
✓ Has door
A house
With two floors
✓ Has stairs
✓ Has second floor
✗ Has third floor
Installing and running pySpec
pip install pytest-pyspec
pytest --pyspec
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
pytest_pyspec-0.4.2.tar.gz
(15.8 kB
view hashes)
Built Distribution
Close
Hashes for pytest_pyspec-0.4.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 28611cb2ad5ffd5b33537c873d445af43e3cc5d7d95fb67b4c98f7362aa1b8a6 |
|
MD5 | 6dc0e2453a1fd98abb9aa36e7466d947 |
|
BLAKE2b-256 | 160c57ff0202ab1e8ce5528a81140ea3ea9e1a3674b518935ba12b885c6fe33e |