kpi-web-guild / django-girls-blog-Miseracle

Blog from a djangotutorial.
1 stars 0 forks source link

Create unit tests #18

Closed DrEdi closed 7 years ago

DrEdi commented 7 years ago

As an example you can use this, but try to do it by yourself :new_moon_with_face:

Miseracle commented 7 years ago

Can you suggest any docs, what exactly should I test in those unittests? I suppose, the answer is not 'everything' :)

DrEdi commented 7 years ago

Routing, querysets, rendering and yep would be better 'everything' :)

webknjaz commented 7 years ago

@Miseracle anything you would find reasonable. Once you try it out and submit a PR, we'll tell you if that makes enough coverage

webknjaz commented 7 years ago

And yes, although python's stdlib package is called unittest, django tests are not exactly unit tests, strictly speaking. They are more like integration.