mirror of
https://github.com/b4tman/sync_ics2gcal
synced 2024-11-10 23:36:52 +00:00
14 lines
312 B
Python
14 lines
312 B
Python
import unittest
|
|
|
|
class TestImports(unittest.TestCase):
|
|
def test_imports(self):
|
|
from gcal_sync import (
|
|
CalendarConverter,
|
|
EventConverter,
|
|
GoogleCalendarService,
|
|
GoogleCalendar,
|
|
CalendarSync
|
|
)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main() |