Open drewbourne opened 12 years ago
I just ran into a related problem while testing: If you pass a proxy object to args()
, Mockolate throws an Error: Error #2090: The Proxy class does not implement callProperty. It must be overridden by a subclass.
I was able to work around it by using instanceOf( MyProxySubclass )
for now, but verifying against an actual instance would be preferable.
For classes that extend Proxy Mockolate should intercept all the flash_proxy methods in order to allow use of
expect()
.Currently users have to do this:
When they should be able to do this:
Support for property access should also be added.
Support for property iteration should also be added.