Skip to content
LaxmiNarayanaMurthyVemuri edited this page Mar 31, 2020 · 13 revisions

Welcome to the WP_Mentor_training_2020 wiki!

Overview

In this project, we have build a book review website. Users will be able to register for your website and then log in using their username and password. Once they log in, they will be able to search for books. You’ll also use a third-party API by Goodreads, another book review website. Finally, users will be able to query for book details.

The requirements to complete the project are mentioned below:

Index

  1. Search
  2. Book page

Environment

  1. Python Flask
  2. PostgreSQL
  3. Goodreads API

Testing

We have used unittest, coverage python modules to test the application.

  • unittest – built-in python module for developing unit tests
  • Coverage – seeing the code coverage of your unit tests

We’ve found that unit tests are critical to testing out any software module that we write. Writing unit tests should be an efficient process that can be greatly simplified by setting up a proper infrastructure.

Here is the test report of this application check here

Clone this wiki locally