I'm diving into JSAN today. If all goes well, I'll have a new test for
HTML.FormValidator to share soon.
In the process, I noticed something that felt like a bug in Test.More
isaOK.
It failed the test when the class name I gave it was a parent of the
class the thing actually was.
In Perl's Test::More, isa_ok() reports success on any class that is
part of the inheritence tree. JavaScript's stricter definition tripped
me up.
Bug, or intentional difference?
Mark