def test_bool_deserializer_unhappy(unhappy_input):
    """ test all unhappy cases for the integer serializer """
    with pytest.raises(SerializerException):
        BoolSerializer.deserialize(unhappy_input)
Beispiel #2
0
def test_bool_deserializer_unhappy(unhappy_input):
    """ test all unhappy cases for the integer serializer """
    with pytest.raises(SerializerException):
        BoolSerializer.deserialize(unhappy_input)
def test_bool_deserializer_happy(inp, expected_output):
    assert BoolSerializer.deserialize(inp) is expected_output
Beispiel #4
0
def test_bool_deserializer_happy(inp, expected_output):
    assert BoolSerializer.deserialize(inp) is expected_output