Hi,

Both tests in that fail for me this is on Python 2.7 with wxPython 2.8.12.1 and using the working branch

The 'testNullRecord' I think should be changed from:
        self.assertEqual(frm.cField.Value, None)
        self.assertEqual(frm.iField.Value, None)
        self.assertEqual(frm.nField.Value, None)

to:
        self.assertEqual(frm.cField.Value, u'')
        self.assertEqual(frm.iField.Value, u'')
        self.assertEqual(frm.nField.Value, u'')

Would that be correct?

However the 'testSomeSanityThings' I don't know how to fix.

First fail is on:
self.assertEqual(frm.cField.Value, "Paul Keith McNett")

frm.cField.Value is u''

It looks like no record is yet selected into the frm fields.

Werner

_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/dabo-dev
Searchable Archives: http://leafe.com/archives/search/dabo-dev
This message: http://leafe.com/archives/byMID/[email protected]

Reply via email to