Mark test xfail

This commit is contained in:
Bouke Versteegh 2020-06-24 21:17:59 +02:00 committed by boukeversteegh
parent 6671d87cef
commit bbf40f9694

View File

@ -2,15 +2,17 @@ from betterproto.tests.output_betterproto.to_dict_with_missing_enum.to_dict_with
Test,
TestMyEnum,
)
import pytest
@pytest.mark.xfail(reason="#93")
def test_message_attributes():
assert (
Test(x=TestMyEnum.ONE).to_dict()['x'] == "ONE"
Test(x=TestMyEnum.ONE).to_dict()["x"] == "ONE"
), "MyEnum.ONE is not serialized to 'ONE'"
assert (
Test(x=TestMyEnum.THREE).to_dict()['x'] == "THREE"
Test(x=TestMyEnum.THREE).to_dict()["x"] == "THREE"
), "MyEnum.THREE is not serialized to 'THREE'"
assert (
Test(x=TestMyEnum.FOUR).to_dict()['x'] == "FOUR"
Test(x=TestMyEnum.FOUR).to_dict()["x"] == "FOUR"
), "MyEnum.FOUR is not serialized to 'FOUR'"