mailr12803 - /1.3/test_suite/unit_tests/_prompt/test_relax_data.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on March 04, 2011 - 16:36:
Author: bugman
Date: Fri Mar  4 16:36:44 2011
New Revision: 12803

URL: http://svn.gna.org/viewcvs/relax?rev=12803&view=rev
Log:
Fixes for the units tests of relax_data.back_calc() as the args can now be 
None.


Modified:
    1.3/test_suite/unit_tests/_prompt/test_relax_data.py

Modified: 1.3/test_suite/unit_tests/_prompt/test_relax_data.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/unit_tests/_prompt/test_relax_data.py?rev=12803&r1=12802&r2=12803&view=diff
==============================================================================
--- 1.3/test_suite/unit_tests/_prompt/test_relax_data.py (original)
+++ 1.3/test_suite/unit_tests/_prompt/test_relax_data.py Fri Mar  4 16:36:44 
2011
@@ -25,7 +25,7 @@
 
 # relax module imports.
 from prompt.relax_data import Relax_data
-from relax_errors import RelaxError, RelaxBoolError, RelaxFloatError, 
RelaxIntError, RelaxNoneIntError, RelaxNoneStrError, RelaxNumError, 
RelaxStrError
+from relax_errors import RelaxError, RelaxBoolError, RelaxFloatError, 
RelaxIntError, RelaxNoneIntError, RelaxNoneNumError, RelaxNoneStrError, 
RelaxNumError, RelaxStrError
 from test_suite.unit_tests.relax_data_testing_base import 
Relax_data_base_class
 
 # Unit test imports.
@@ -45,11 +45,11 @@
         # Loop over the data types.
         for data in DATA_TYPES:
             # Catch the str argument, and skip it.
-            if data[0] == 'str':
-                continue
-
-            # The argument test.
-            self.assertRaises(RelaxStrError, self.relax_data_fns.back_calc, 
ri_id=data[1])
+            if data[0] == 'None' or data[0] == 'str':
+                continue
+
+            # The argument test.
+            self.assertRaises(RelaxNoneStrError, 
self.relax_data_fns.back_calc, ri_id=data[1])
 
 
     def test_back_calc_argfail_ri_type(self):
@@ -58,11 +58,11 @@
         # Loop over the data types.
         for data in DATA_TYPES:
             # Catch the str argument, and skip it.
-            if data[0] == 'str':
-                continue
-
-            # The argument test.
-            self.assertRaises(RelaxStrError, self.relax_data_fns.back_calc, 
ri_id='R2', ri_type=data[1])
+            if data[0] == 'None' or data[0] == 'str':
+                continue
+
+            # The argument test.
+            self.assertRaises(RelaxNoneStrError, 
self.relax_data_fns.back_calc, ri_id='R2', ri_type=data[1])
 
 
     def test_back_calc_argfail_frq(self):
@@ -71,11 +71,11 @@
         # Loop over the data types.
         for data in DATA_TYPES:
             # Catch the number arguments, and skip them.
-            if data[0] == 'bin' or data[0] == 'int' or data[0] == 'float':
-                continue
-
-            # The argument test.
-            self.assertRaises(RelaxNumError, self.relax_data_fns.back_calc, 
ri_id='R2_1000', ri_type='R2', frq=data[1])
+            if data[0] == 'None' or data[0] == 'bin' or data[0] == 'int' or 
data[0] == 'float':
+                continue
+
+            # The argument test.
+            self.assertRaises(RelaxNoneNumError, 
self.relax_data_fns.back_calc, ri_id='R2_1000', ri_type='R2', frq=data[1])
 
 
     def test_copy_argfail_pipe_from(self):




Related Messages


Powered by MHonArc, Updated Wed Mar 09 17:20:03 2011