[Scipy-svn] r2810 - trunk/Lib/sandbox/timeseries/tests

scipy-svn at scipy.org scipy-svn at scipy.org
Fri Mar 2 03:54:09 EST 2007


Author: pierregm
Date: 2007-03-02 02:54:05 -0600 (Fri, 02 Mar 2007)
New Revision: 2810

Removed:
   trunk/Lib/sandbox/timeseries/tests/test_misc.py
Log:
tests/test_misc : deleted, dispatched to addons/tests/

Deleted: trunk/Lib/sandbox/timeseries/tests/test_misc.py
===================================================================
--- trunk/Lib/sandbox/timeseries/tests/test_misc.py	2007-03-02 08:49:29 UTC (rev 2809)
+++ trunk/Lib/sandbox/timeseries/tests/test_misc.py	2007-03-02 08:54:05 UTC (rev 2810)
@@ -1,70 +0,0 @@
-# pylint: disable-msg=W0611, W0612, W0511,R0201
-"""Tests suite for miscellaneous functions in timeseries module.
-Adapted from the original test_ma by Pierre Gerard-Marchant
-
-:author: Pierre Gerard-Marchant & Matt Knox
-:contact: pierregm_at_uga_dot_edu & mattknox_ca_at_hotmail_dot_com
-:version: $Id$
-"""
-__author__ = "Pierre GF Gerard-Marchant & Matt Knox ($Author$)"
-__version__ = '1.0'
-__revision__ = "$Revision$"
-__date__     = '$Date$'
-
-import numpy as N
-from numpy import bool_, complex_, float_, int_, object_
-import numpy.core.fromnumeric  as fromnumeric
-import numpy.core.numeric as numeric
-from numpy.testing import NumpyTest, NumpyTestCase
-from numpy.testing.utils import build_err_msg
-
-import maskedarray
-from maskedarray import masked_array, masked, nomask
-
-import maskedarray.testutils
-from maskedarray.testutils import assert_equal, assert_array_equal, approx
-
-from timeseries import extras
-
-class test_funcs(NumpyTestCase):
-    
-    def __init__(self, *args, **kwds):
-        NumpyTestCase.__init__(self, *args, **kwds)
-        self.mask = [1,0,1,0,0,1,1,0,0,0]
-        self.data = numeric.arange(10)
-        self.test_array = masked_array(self.data, mask=self.mask)
-
-    def test_backward_fill (self):
-        result = masked_array(self.data, mask=self.mask)
-        result[0] = 1
-        result[2] = 3
-       
-        assert_equal(extras.backward_fill(self.test_array, maxgap=1), result)
-        
-        result[5] = 7
-        result[6] = 7
-        
-        assert_equal(extras.backward_fill(self.test_array), result)
-
-    def test_forward_fill (self):
-        result = masked_array(self.data, mask=self.mask)
-        result[2] = 1
-       
-        assert_equal(extras.forward_fill(self.test_array, maxgap=1), result)
-        
-        result[5] = 4
-        result[6] = 4
-        
-        assert_equal(extras.forward_fill(self.test_array), result)
-
-    def test_interp_fill(self):
-        result_lin = masked_array(self.data).astype(float_)
-        result_lin[0] = masked
-        
-        approx(extras.interp_masked1d(self.test_array.astype(float_), kind='linear'), result_lin)
-        
-        
-###############################################################################
-#------------------------------------------------------------------------------
-if __name__ == "__main__":
-    NumpyTest().run()        
\ No newline at end of file




More information about the Scipy-svn mailing list