You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Callbacks are being called for anonymous subclasses generated with test_class_factory method in our tests, but once we try to use non-anonymous classes, any callbacks defined on a subclass are not being called.
Done when: callbacks defined on a subclass are called, when the subclass and it's parent have actual constant names (i.e. are not anonymous).
The text was updated successfully, but these errors were encountered:
Callbacks for named (i.e. non-anonymous) classes were not being called. This was
getting missed in the tests because we are using anonymous classes there.
Also, uses the 'observable' test object in all tests (there was one that wasn't
using it).
Closes#8.
bumps version to 0.2.1
Callbacks are being called for anonymous subclasses generated with
test_class_factory
method in our tests, but once we try to use non-anonymous classes, any callbacks defined on a subclass are not being called.Done when: callbacks defined on a subclass are called, when the subclass and it's parent have actual constant names (i.e. are not anonymous).
The text was updated successfully, but these errors were encountered: