Commit d6c72fc3 authored by Andreas Jung's avatar Andreas Jung

now running also standalone

parent f92632e6
...@@ -807,6 +807,8 @@ def test_suite(): ...@@ -807,6 +807,8 @@ def test_suite():
return alltests return alltests
## utility functions ## utility functions
def lsubtract(l1, l2): def lsubtract(l1, l2):
...@@ -819,3 +821,10 @@ def lsubtract(l1, l2): ...@@ -819,3 +821,10 @@ def lsubtract(l1, l2):
def realseq(itemsob): def realseq(itemsob):
return map(lambda x: x, itemsob) return map(lambda x: x, itemsob)
def main():
TextTestRunner().run(test_suite())
if __name__ == '__main__':
main()
...@@ -510,3 +510,10 @@ def lsubtract(l1, l2): ...@@ -510,3 +510,10 @@ def lsubtract(l1, l2):
def realseq(itemsob): def realseq(itemsob):
return map(lambda x: x, itemsob) return map(lambda x: x, itemsob)
def main():
TextTestRunner().run(test_suite())
if __name__ == '__main__':
main()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment