GDAPS

2019-06-15 Thread Christian González
Hi all, sorry, I never managed to introduce myself properly to this mailing list. Christian Gonzalez, more or less hobby programmer, MD as day job. I maybe never will add something substantial to Django core itself, but ATM "scratching my own itch" here: Just wanted to say that I finished "Alpha

Re: How to test whether a formset instance is properly initialized

2019-06-15 Thread Carlton Gibson
Hey Parth, > I'm currently using a python shell to create objects and then check manually > its attributes, etc. More or less, do the same thing, but in a test case.  # Declare class # Create instance # self.assertEqual()/assertIs()/etc expected attributes. # … same but for behaviour