Re: [BangPypers] Django test case problem

2009-07-28 Thread B.Nanda Kishore
By default django looks for a file called *tests.py*(plural) and not * test.py*. Check that and let us know. Regards, Nandakishore On Tue, Jul 28, 2009 at 6:40 PM, VIJAY KUMAR wrote: > Hi, > >I am running testcase from django when I run them from models.py it > run. > >But when I put t

Re: [BangPypers] Any python metaclasses for UID

2009-07-28 Thread Rajeev J Sebastian
On Tue, Jul 28, 2009 at 7:28 PM, Shivaraj M S wrote: > Well,it's like a game. > Mapping the names with real world objects-specially current affairs, should > convey great deal of information > for the abstraction to be realized. > Still waiting for the metaclasses, if any. > -- Do you have any

[BangPypers] Any python metaclasses for UID

2009-07-28 Thread Shivaraj M S
Well,it's like a game. Mapping the names with real world objects-specially current affairs, should convey great deal of information for the abstraction to be realized. Still waiting for the metaclasses, if any. -- Regards ___ Shivaraj ___

Re: [BangPypers] Django test case problem

2009-07-28 Thread Gora Mohanty
On Tue, 28 Jul 2009 18:40:39 +0530 (IST) VIJAY KUMAR wrote: [...] > I used this command to run the test cases   python manage.py test > polls Can some help me know what am I missing or should need to > do something  so my testcase from test.py start get executed. [...] Any errors that you see? I

[BangPypers] Django test case problem

2009-07-28 Thread VIJAY KUMAR
Hi,    I am running testcase from django when I run them from models.py it run.    But when I put the same in test.py in the same directory where models is define it not even getting called.   My structure django application is  mysite Settings.py Urls.py   Polls