svgcalendar.test.py revision 80d884facc03aa44a6f70dcba14d83643e52916e
import sys
from svgcalendar import *
#def setUp(self):
def test_default_names_list(self):
args = [ 'minimal-blank.svg' ]
e = SVGCalendar()
def test_modifyed_names_list(self):
args = [
'--month-names=JAN FEV MAR ABR MAI JUN JUL AGO SET OUT NOV DEZ',
'--day-names=DOM SEG TER QUA QUI SEX SAB',
'minimal-blank.svg'
]
e = SVGCalendar()
args = [
'--month-names= JAN FEV MAR ABR MAI JUN JUL AGO SET OUT NOV DEZ ',
'--day-names= DOM SEG TER QUA QUI SEX SAB ',
'minimal-blank.svg'
]
e = SVGCalendar()
args = [
'--month-names=JAN FEV MAR ABR MAI JUN JUL AGO SET OUT NOV DEZ',
'--day-names=DOM SEG TER QUA QUI SEX SAB',
'minimal-blank.svg'
]
e = SVGCalendar()
args = [ 'minimal-blank.svg' ]
e = SVGCalendar()
e = SVGCalendar()
e = SVGCalendar()
args = [ 'minimal-blank.svg' ]
e = SVGCalendar()
e = SVGCalendar()
e = SVGCalendar()
def test_recognize_a_weekend(self):
e = SVGCalendar()
if __name__ == '__main__':