mailr22313 - /trunk/test_suite/unit_tests/_specific_analyses/_relax_disp/test_disp_data.py


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

Header


Content

Posted by tlinnet on February 25, 2014 - 16:39:
Author: tlinnet
Date: Tue Feb 25 16:39:33 2014
New Revision: 22313

URL: http://svn.gna.org/viewcvs/relax?rev=22313&view=rev
Log:
Moved the unit test of has_exponential_exp_type() to its own test.

Regarding bug #21665, (https://gna.org/bugs/?21665) - Running a CPMG analysis 
with two fields at two delay times.

Modified:
    
trunk/test_suite/unit_tests/_specific_analyses/_relax_disp/test_disp_data.py

Modified: 
trunk/test_suite/unit_tests/_specific_analyses/_relax_disp/test_disp_data.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/test_suite/unit_tests/_specific_analyses/_relax_disp/test_disp_data.py?rev=22313&r1=22312&r2=22313&view=diff
==============================================================================
--- 
trunk/test_suite/unit_tests/_specific_analyses/_relax_disp/test_disp_data.py 
(original)
+++ 
trunk/test_suite/unit_tests/_specific_analyses/_relax_disp/test_disp_data.py 
Tue Feb 25 16:39:33 2014
@@ -87,11 +87,6 @@
         print(curve_type)
         self.assertEqual(curve_type, 'fixed time')
 
-        # Check the return of has_exponential_exp_type.
-        exponential_exp_type = has_exponential_exp_type()
-        print(exponential_exp_type)
-        self.assertEqual(exponential_exp_type, False)
-
 
     def test_get_times(self):
         """Unit test of the get_times() function.
@@ -108,6 +103,22 @@
         for exp_type in times:
             print(times[exp_type])
             self.assertEqual(len(times[exp_type]), 2)
+
+
+    def test_has_exponential_exp_type(self):
+        """Unit test of the has_exponential_exp_type() function.
+
+        This uses the data of the saved state attached to U{bug 
#21665<https://gna.org/bugs/?21665>}.
+        """
+
+        # Load the state.
+        statefile = status.install_path + 
sep+'test_suite'+sep+'shared_data'+sep+'dispersion'+sep+'bug_21665.bz2'
+        state.load_state(statefile, force=True)
+
+        # Check the return of has_exponential_exp_type.
+        exponential_exp_type = has_exponential_exp_type()
+        print(exponential_exp_type)
+        self.assertEqual(exponential_exp_type, False)
 
 
     def test_loop_exp_frq(self):




Related Messages


Powered by MHonArc, Updated Tue Feb 25 16:40:02 2014