Creating a blogging application using Django Framework
What does this application do?
Full details of the post:title, description and date.
Implementation details:
Used sqlite database to store all the posts.
I performed blackbox testing and unit testing on this application. As a user, I used the application to create, edit, list the posts. I have written unit test cases to test the functionality of all the components. There are two files: tests_views.py and tests_models.py which are related to tests. I used Client() from django.test to simulate as a user. With that client, I have tested the functions in views.py .
To measure code coverage, I used converage tool which I tried for the first time and I liked it. My code achieved a coverage of 88% overall.
All files are well documented. I have writted comments for each function to get an idea about it.