Basic Usage
Import
The expect utility can be imported from the package:
from expecter import expect
def test_foobar():
expect("foo") != "bar"
Fixture
The utility is also available as pytest fixture
def test_foobar(expect):
expect("foo") != "bar"