Re: Axiom Testing

Jean-Paul Calderone <[email protected]> Fri, 10 Feb 2006 13:03:54 -0500
Newsgroups gmane.comp.python.quotient.dev
Message-ID <20060210180354.20077.1949117963.divmod.quotient.311@ohm>
On Fri, 10 Feb 2006 14:56:33 -0300, Gabriel Jacobo <[email protected]> wrote:
>Thanks for your reply! The test is actually very minimal...
>
>
>from axiom import item, attributes, sequence, store
>
>class TestA(item.Item):
>    typeName = "TestA"
>    schemaVersion = 1
>    fieldA = attributes.text()
>   class TestB(item.Item):
>    schemaVersion = 1
>    typeName = "TestB"
>
>mystore = store.Store()
>
>x1 = TestA(store=mystore, fieldA=u'xxasxasx')
>
>
>When Python executes the last line the exception is rised except I make the 
>noted modification to slotmachine.py
>

Thanks.  It looks like this has been since fixed (I can run it with no exception occuring, at least).  Perhaps it is time for a new Axiom release...

Jean-Paul