'''
Unit test file for ../markers_strokepaint.py
Revision history:
* 2012-01-27 (jazzynico): checks defaulf parameters and file handling.
--
If you want to help, read the python unittest documentation:
'''
import sys
import unittest
from markers_strokepaint import *
#def setUp(self):
args = ['svg/empty-SVG.svg']
e = MyEffect()
#self.assertEqual( e.something, 'some value', 'A commentary about that.' )
args = ['svg/default-plain-SVG.svg']
e = MyEffect()
'''
def test_markers(self):
args = ['svg/markers.svg']
'''
if __name__ == '__main__':
#unittest.main()