Skip to content

Commit cff89b1

Browse files
authored
Update README.md
1 parent bfde949 commit cff89b1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# dbtest · ![](https://github.com/cortze/dbtest/actions/workflows/module_tests.yml/badge.svg) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)
1+
# unit-db-test · ![](https://github.com/cortze/dbtest/actions/workflows/module_tests.yml/badge.svg) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)
22

33
Is your tool hard to debug? Is it easier if you check it at the DB level?
44

5-
This module is for you! **dbtests** is a Python tool for conducting database tests. It is a unittest wrapper focussed on making DB integrity tests.
5+
This module is for you! **unit-db-test** is a Python tool for conducting database tests. It is a unittest wrapper focussed on making DB integrity tests.
66
As it is an extension over the `unittest.TestCase` it is easy to configure and easy to integrate with GitHub actions.
77

88

@@ -18,7 +18,7 @@ As it is an extension over the `unittest.TestCase` it is easy to configure and e
1818
You can install **dbtests** using pip:
1919

2020
```bash
21-
pip install dbtests
21+
pip install unit-db-test
2222
```
2323

2424
## Usage
@@ -40,7 +40,7 @@ my-tool/
4040
# test_script_1.py
4141
# Dependencies
4242
import unittest
43-
from dbtest.unittest import DBintegrityTest
43+
from unit-db-test.testcase import DBintegrityTest
4444
```
4545

4646
3. Create a `DBintegrityTest` as if it was a `unittest.TestCase`. It is important to define the path to the `.env` that keeps the Postgres DB credentials:

0 commit comments

Comments
 (0)