#!/usr/bin/env python
# (C) 2000 Huaiyu Zhu <hzhu@users.sourceforge.net>. Licence: GPL
# $Id: test_all.py,v 1.1.1.1 2000/06/03 23:56:49 hzhu Exp $
"""
All the tests for Matrix module
"""
from MatPy.tests import __all__
print __all__
for name in __all__:
print "\n", "="*70, "\nRunning %s.py ... " % name
__import__(name)
print "Finished %s " % name
|