Fix serialization of repeated fields with empty messages (#180)
Extend test config and utils to support exclusion of certain json samples from testing for symetry.
This commit is contained in:
		| @@ -5,11 +5,11 @@ from tests.util import get_test_case_json_data | ||||
|  | ||||
| def test_which_count(): | ||||
|     message = Test() | ||||
|     message.from_json(get_test_case_json_data("oneof")[0]) | ||||
|     message.from_json(get_test_case_json_data("oneof")[0].json) | ||||
|     assert betterproto.which_one_of(message, "foo") == ("pitied", 100) | ||||
|  | ||||
|  | ||||
| def test_which_name(): | ||||
|     message = Test() | ||||
|     message.from_json(get_test_case_json_data("oneof", "oneof_name.json")[0]) | ||||
|     message.from_json(get_test_case_json_data("oneof", "oneof_name.json")[0].json) | ||||
|     assert betterproto.which_one_of(message, "foo") == ("pitier", "Mr. T") | ||||
|   | ||||
		Reference in New Issue
	
	Block a user