ref: f603b5758565757dc0969b563767c6c5f662fb54
parent: cc9d0cc1b3a2cfcd3622cfc316f8969ca2d248aa
author: Paul Brossier <piem@piem.org>
date: Wed Oct 7 22:10:10 EDT 2009
tests/python: update template.py
--- a/tests/python/template.py
+++ b/tests/python/template.py
@@ -1,6 +1,8 @@
import unittest
+from numpy import array
class aubio_unit_template(unittest.TestCase):
+ """ a class derivated from unittest.TestCase """
def assertCloseEnough(self, first, second, places=5, msg=None):
"""Fail if the two objects are unequal as determined by their
@@ -15,3 +17,7 @@
if round((second-first)/first, places) != 0:
raise self.failureException, \
(msg or '%r != %r within %r places' % (first, second, places))
+
+def array_from_text_file(filename, dtype = 'float'):
+ return array([line.split() for line in open(filename).readlines()],
+ dtype = dtype)