10 lines
236 B
Python
10 lines
236 B
Python
"""
|
|
Tests for the Palto project.
|
|
|
|
Tests allow to easily check after modifying the logic behind a feature that everything still work as intended.
|
|
"""
|
|
|
|
from django.test import TestCase
|
|
|
|
# Create your tests here.
|
|
from .api.v1 import tests
|