Fixed some tests, added a few more
This commit is contained in:
22
inkycal/tests/inkycal_calendar_test.py
Normal file
22
inkycal/tests/inkycal_calendar_test.py
Normal file
@@ -0,0 +1,22 @@
|
||||
import unittest
|
||||
from inkycal.modules import Calendar
|
||||
|
||||
calendar = Calendar(
|
||||
#size
|
||||
(400,400),
|
||||
|
||||
# config
|
||||
{
|
||||
'week_starts_on': 'Monday',
|
||||
'ical_urls': ['https://calendar.google.com/calendar/ical/en.usa%23holiday%40group.v.calendar.google.com/public/basic.ics']
|
||||
}
|
||||
)
|
||||
|
||||
class inkycal_calendar_test(unittest.TestCase):
|
||||
def test_generate_image(self):
|
||||
print('testing image generation')
|
||||
calendar.generate_image()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
Reference in New Issue
Block a user