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

20 lines
566 B
Python
Raw Normal View History

2018-04-05 18:39:22 +00:00
import unittest
class TestImports(unittest.TestCase):
def test_import_CalendarConverter(self):
from gcal_sync import CalendarConverter
def test_import_EventConverter(self):
from gcal_sync import EventConverter
def test_import_GoogleCalendarService(self):
from gcal_sync import GoogleCalendarService
def test_import_GoogleCalendar(self):
from gcal_sync import GoogleCalendar
def test_import_CalendarSync(self):
from gcal_sync import CalendarSync
if __name__ == '__main__':
unittest.main()