本文整理汇总了Python中party.tests.factories.TenureRelationshipFactory.build方法的典型用法代码示例。如果您正苦于以下问题:Python TenureRelationshipFactory.build方法的具体用法?Python TenureRelationshipFactory.build怎么用?Python TenureRelationshipFactory.build使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类party.tests.factories.TenureRelationshipFactory
的用法示例。
在下文中一共展示了TenureRelationshipFactory.build方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_str
# 需要导入模块: from party.tests.factories import TenureRelationshipFactory [as 别名]
# 或者: from party.tests.factories.TenureRelationshipFactory import build [as 别名]
def test_str(self):
project = ProjectFactory.build(name='TestProject')
tenure_type = TenureRelationshipType(id='LS', label="Leasehold")
relationship = TenureRelationshipFactory.build(
project=project,
party__project=project,
party__name='Family',
spatial_unit__project=project,
spatial_unit__type='PA',
tenure_type=tenure_type)
assert str(relationship) == (
"<TenureRelationship: <Family> Leasehold <Parcel>>")
示例2: test_repr
# 需要导入模块: from party.tests.factories import TenureRelationshipFactory [as 别名]
# 或者: from party.tests.factories.TenureRelationshipFactory import build [as 别名]
def test_repr(self):
project = ProjectFactory.build(slug='prj')
party = PartyFactory.build(id='abc123', project=project)
su = SpatialUnitFactory.build(id='def456', project=project)
relationship = TenureRelationshipFactory.build(
id='abc123',
project=project,
party=party,
spatial_unit=su,
tenure_type=TenureRelationshipType(id='CR'))
assert repr(relationship) == ('<TenureRelationship id=abc123'
' party=abc123 spatial_unit=def456'
' project=prj tenure_type=CR>')