Newer
Older
GB_Printer / Dump / share / extensions / test / chardataeffect.test.py
@Christopher W. Olsen Christopher W. Olsen on 4 Feb 2020 739 bytes Dumping
#!/usr/bin/env python

# This is only the automatic generated test file for ../chardataeffect.py
# This must be filled with real tests and this commentary
# must be cleared.
# If you want to help, read the python unittest documentation:
# http://docs.python.org/library/unittest.html

import sys
sys.path.append('..') # this line allows to import the extension code

import unittest
from chardataeffect import *

class CharDataEffectBasicTest(unittest.TestCase):

  #def setUp(self):

  def test_run_without_parameters(self):
    args = [ 'minimal-blank.svg' ]
    e = CharDataEffect()
    e.affect( args, False )
    #self.assertEqual( e.something, 'some value', 'A commentary about that.' )

if __name__ == '__main__':
  unittest.main()