test: move to tests folder.

This commit is contained in:
Mono Mono 2024-07-27 15:21:04 -05:00
parent c6ca0feb11
commit a9ab0f4ee7
2 changed files with 2 additions and 4 deletions

View File

@ -1,6 +1,6 @@
from django.test import TestCase
from django.core.exceptions import ValidationError
from .models import Payment, ReconciliationJar
from ..models import Payment, ReconciliationJar
class TestBilling(TestCase):

View File

@ -1,9 +1,7 @@
from django.test import Client, TestCase
from django.contrib.auth.models import AnonymousUser, User
#from django.conf import settings
#from .views import import_products, products
from .models import Payment
from ..models import Payment
class TestReconciliationJarClient(TestCase):