Skip to main content

A fork of 'expecter' with better support for pytest.

Project description

This is a fork of garybernhardt/expecter that hides the internal stack trace for pytest.

Build Status
PyPI Version
PyPI Downloads

Overview

This lets you write tests (using ropez/pytest-describe) like this:

from expecter import expect


def describe_foobar():

    def it_can_pass():
        expect(2 + 3) == 5

    def it_can_fail():
        expect(2 + 3) == 6

and instead of getting output like this:

=================================== FAILURES ===================================
_________________________ describe_foobar.it_can_fail __________________________

    def it_can_fail():
>       expect(2 + 3) == 6

test_expecter.py:14:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = expect(3), other = 4

    def __eq__(self, other):
        msg = 'Expected %s but got %s' % (repr(other), repr(self._actual))
        if (isinstance(other, basestring) and
                isinstance(self._actual, basestring)):
            msg += normalized_diff(other, self._actual)
        elif len(repr(self._actual)) > 74:
            msg += normalized_diff(pprint.pformat(other),
                                   pprint.pformat(self._actual))
>       assert self._actual == other, msg
E       AssertionError: Expected 6 but got 5

env/lib/python3.5/site-packages/expecter.py:57: AssertionError
====================== 1 failed, 1 passed in 2.67 seconds ======================

getting output like this:

=================================== FAILURES ===================================
_________________________ describe_foobar.it_can_fail __________________________

    def it_can_fail():
>       expect(2 + 3) == 6
E       AssertionError: Expected 6 but got 5

test_expecter.py:14: AssertionError
====================== 1 failed, 1 passed in 2.67 seconds ======================

Installation

pip install pytest-expecter

Versioning

This plugin’s version number will follow expecter:

M.N.P.postF

where:

  • M.N.P is the version of expecter included in the plugin

  • F is incremented on each release of the plugin for that version

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytest-expecter-0.2.2.post2.tar.gz (4.3 kB view details)

Uploaded Source

Built Distribution

pytest_expecter-0.2.2.post2-py3-none-any.whl (6.5 kB view details)

Uploaded Python 3

File details

Details for the file pytest-expecter-0.2.2.post2.tar.gz.

File metadata

File hashes

Hashes for pytest-expecter-0.2.2.post2.tar.gz
Algorithm Hash digest
SHA256 9684c010ba9f1238e53484de0260d026c3c36c638e927ede6d206dd33cdfccb7
MD5 81d73e944d79343d7a9f2884088fa3ff
BLAKE2b-256 225a426e6aa641e3d224460a367d86281d563f6a207aefd89407fda4b2bd46c8

See more details on using hashes here.

File details

Details for the file pytest_expecter-0.2.2.post2-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_expecter-0.2.2.post2-py3-none-any.whl
Algorithm Hash digest
SHA256 5785f7d9c64ff378a2f2d715564345a014859a4a34f8626623ef93dbb1109b5d
MD5 c13dfaac3377d4eb4e73dfabdb245cc7
BLAKE2b-256 f5ee4a050b16046ac31335afb050bcbff0f7ac99475c1514cf11dd2d29d736ea

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page