Exemplo n.º 1
0
def test_is_from_common_country():
    a = PersonFactory(country='Australia')
    assert a.is_from_common_country()
    b = PersonFactory(country='Venezuela')
    assert not b.is_from_common_country()