Exemple #1
0
 def test_ma(self):
     lazy_data = COUNT.lazy_aggregate(self.lazy_cube.lazy_data(),
                                      axis=0,
                                      function=self.func)
     self.assertTrue(is_lazy_data(lazy_data))
     self.assertArrayEqual(lazy_data.compute(), [2])
Exemple #2
0
 def test_lazy(self):
     lazy_data = COUNT.lazy_aggregate(self.lazy_cube.lazy_data(),
                                      axis=0,
                                      function=self.func)
     self.assertTrue(is_lazy_data(lazy_data))
Exemple #3
0
 def test_lazy_collapse(self):
     lazy_data = COUNT.lazy_aggregate(self.lazy_cube.lazy_data(),
                                      axis=0,
                                      function=self.func)
     self.assertArrayEqual(lazy_data.compute(), [3])
Exemple #4
0
 def test_no_function(self):
     exp_emsg = r"function must be a callable. Got <.* 'NoneType'>"
     with self.assertRaisesRegex(TypeError, exp_emsg):
         COUNT.lazy_aggregate(self.lazy_cube.lazy_data(), axis=0)
Exemple #5
0
 def test_lazy_not_callable(self):
     with self.assertRaisesRegex(TypeError, 'function must be a callable'):
         COUNT.lazy_aggregate(self.lazy_cube.lazy_data(),
                              axis=0,
                              function='wibble')
Exemple #6
0
 def test_lazy_collapse(self):
     lazy_data = COUNT.lazy_aggregate(self.lazy_cube.lazy_data(),
                                      axis=0,
                                      function=self.func)
     self.assertArrayEqual(lazy_data.compute(), [3])
Exemple #7
0
 def test_lazy(self):
     lazy_data = COUNT.lazy_aggregate(self.lazy_cube.lazy_data(),
                                      axis=0,
                                      function=self.func)
     self.assertTrue(is_lazy_data(lazy_data))
Exemple #8
0
 def test_lazy_not_callable(self):
     with self.assertRaisesRegexp(TypeError, 'function must be a callable'):
         COUNT.lazy_aggregate(self.lazy_cube.lazy_data(),
                              axis=0,
                              function='wibble')
Exemple #9
0
 def test_no_function(self):
     exp_emsg = r"function must be a callable. Got <.* 'NoneType'>"
     with self.assertRaisesRegexp(TypeError, exp_emsg):
         COUNT.lazy_aggregate(self.lazy_cube.lazy_data(), axis=0)
Exemple #10
0
 def test_ma(self):
     lazy_data = COUNT.lazy_aggregate(self.lazy_cube.lazy_data(),
                                      axis=0,
                                      function=self.func)
     self.assertTrue(is_lazy_data(lazy_data))
     self.assertArrayEqual(lazy_data.compute(), [2])