ZakBibi / PracticePython

A repository of my practice python projects.
0 stars 0 forks source link

Make CRUD operations on PostageRatePostgresDao transactional #118

Closed BasilBibi closed 5 years ago

BasilBibi commented 5 years ago

We found that there is a possibility that updates are not being seen across connections to postgres.

This issue drives changes to create, update and delete* operations to make then commit correctly.

Definition Of Done

  1. Changes to the crud operations.
  2. Tests that prove transactions are seen by another connection.
  3. Tests clear out database before and after each test.