Skip to content
Snippets Groups Projects
test_always_fails.py 220 B
Newer Older
import pytest


def test_croak_and_die():
    pytest.fail("I'm melting! I'm melting!")


def test_but_but_its_true():
    assert 'Janet' == 'Codemeister'


def test_this_one_should_pass():
    print('"I am the walrus"')