On Tue, Mar 15, 2011 at 6:40 PM, Martin Tiršel <[email protected]> wrote:
> I am new to unit tests and I am using django.test.TestCase. What I don't > understand, is this situation > > > class GameWorldTests(TestCase): > def setUp(self): > self.test_world = GameWorld.objects.create( > name='Testing world', > game=GameWorld.GAME_TYPE_XY, > domain='test.xy.com' > ) > print self.test_world.settings['world_width'] > What is that settings attribute and how is it attached to a GameWorld instance? (Yes, the DB is reset and setUp is called between each test function run.) Karen -- http://tracey.org/kmt/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

