Total Complexity | 1 |
Total Lines | 8 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | """utils module tests.""" |
||
2 | |||
3 | |||
4 | def test_vat(): |
||
|
|||
5 | from econopy.utils import deflate_vat |
||
6 | defl = deflate_vat(100) |
||
7 | assert defl == 100 / 1.21 |
||
8 |
The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:
If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.