mirror of
https://github.com/rjNemo/villafleurie
synced 2026-06-12 13:26:47 +00:00
11 lines
No EOL
239 B
Python
11 lines
No EOL
239 B
Python
from django.test import TestCase
|
|
import rental.services.calendar as calendar
|
|
|
|
|
|
class CalendarTestCase(TestCase):
|
|
def setUp(self):
|
|
pass
|
|
|
|
def test_CalendarBuild(self):
|
|
obj = calendar.build_service()
|
|
print(obj) |