#!/usr/bin/env python
'''
Unit test file for ../summersnight.py
Revision history:
* 2012-01-28 (jazzynico): first working version (only checks the extension
with the default parameters).
--
If you want to help, read the python unittest documentation:
http://docs.python.org/library/unittest.html
'''
import sys
import unittest
sys.path.append('..') # this line allows to import the extension code
from summersnight import *
class EnvelopeBasicTest(unittest.TestCase):
#def setUp(self):
def test_run_without_parameters(self):
args = ['minimal-blank.svg']
e = Project()
self.assertRaises(SystemExit, e.affect, args)
if __name__ == '__main__':
unittest.main()
#suite = unittest.TestLoader().loadTestsFromTestCase(EnvelopeBasicTest)
#unittest.TextTestRunner(verbosity=2).run(suite)