add unittest test_title

This commit is contained in:
2021-08-20 11:40:12 -07:00
parent beb1bdadba
commit 4dec9f77c9
5 changed files with 66 additions and 0 deletions

20
test/README.md Normal file
View File

@@ -0,0 +1,20 @@
To run these tests just type the command
```python
python3 -m unittest
```
Or you can just run a specific file of tests
```python
python3 -m unittest test.test_title
```
Or run a specific test class in a specific file
```python
python3 -m unittest test.test_title.TestTitle
```
Or run a specific test function in a specific class in a specific file
```python
python3 -m unittest test.test_title.TestTitle.test_title_anchor
```