uber / doubles

Test doubles for Python.
MIT License
164 stars 17 forks source link

InstanceDoubles should pass isinstance #63

Open toddsifleet opened 9 years ago

toddsifleet commented 9 years ago

This should return true but does not:

from doubles import InstanceDouble from doubles.testing import User isinstance(InstanceDouble('doubles.testing.User'), User) False