Exemplo n.º 1
0
 def test_repr(self, m_fn):
     """Return a string formatted <Cultivar '<fullname>'>"""
     m_fn.return_value = 'Full Cultivar Name'
     cv = Cultivar()
     assert cv.__repr__() == '<Cultivar "Full Cultivar Name">'