1
0
mirror of https://github.com/b4tman/sync_ics2gcal synced 2024-09-21 17:08:02 +00:00
sync_ics2gcal/tests/test_imports.py

14 lines
312 B
Python
Raw Normal View History

2018-04-05 18:39:22 +00:00
import unittest
class TestImports(unittest.TestCase):
2018-04-07 13:04:04 +00:00
def test_imports(self):
from gcal_sync import (
CalendarConverter,
EventConverter,
GoogleCalendarService,
GoogleCalendar,
CalendarSync
)
2018-04-05 18:39:22 +00:00
if __name__ == '__main__':
unittest.main()