10 lines
232 B
Python
10 lines
232 B
Python
from django.test import TestCase
|
|
|
|
# Create your tests here.
|
|
def test_function():
|
|
"""тестовая функция для проверки планировщика
|
|
|
|
"""
|
|
print("Hello, World!")
|
|
return "Hello, World!"
|