mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
8 lines
180 B
Python
8 lines
180 B
Python
from RIGS import models
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def vat_rate(db):
|
|
return models.VatRate.objects.create(start_at='2014-03-05', rate=0.20, comment='test1')
|