Aan de slagGa gratis aan de slag

Failed tests with xfail

In this exercise, you will use pytest markers for the first time in order to specify the behavior of the test. You have already seen the function multiple_of_two, which checks whether the num is a multiple of 2 or not. The pytest library was already imported for you.

Deze oefening maakt deel uit van de cursus

Introduction to Testing in Python

Cursus bekijken

Oefeninstructies

  • Add the correct pytest marker for a test that is expected to fail.
  • Write any assert test that is expected to fail.

Praktische interactieve oefening

Probeer deze oefening eens door deze voorbeeldcode in te vullen.

def multiple_of_two(num):
    if num == 0:
        raise(ValueError)
    return num % 2 == 0

# Add the pytest marker decorator here
____.____.____
def test_fails():
    # Write any assert test that will fail
    ____ multiple_of_two(____) ____ ____
Code bewerken en uitvoeren