[Zope3-dev] verifyClass and attributes

Garrett Smith garrett@mojave-corp.com
Wed, 25 Jun 2003 08:49:12 -0500


verifyClass doesn't seem to mind that interface attributes aren't
implemented by a class. E.g.

  IFoo
  ------
  bar =3D Text()

  Foo
  -------
  implements(IFoo)

verifyClass(IFoo, Foo) passes, but verifyObject(IFoo, Foo()) fails.

Should verifyClass fail here?

 -- Garrett