4 lines
119 B
Python
4 lines
119 B
Python
|
|
def test__str__(factories):
|
|
user = factories['users.User'](username='hello')
|
|
assert user.__str__() == 'hello'
|