mailr3466 - /1.3/test_suite/unit_tests/generic_fns/test_spin.py


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

Header


Content

Posted by edward on November 11, 2007 - 11:12:
Author: bugman
Date: Sun Nov 11 11:12:44 2007
New Revision: 3466

URL: http://svn.gna.org/viewcvs/relax?rev=3466&view=rev
Log:
Wrote a unit test for checking the copying of spin data between molecules.


Modified:
    1.3/test_suite/unit_tests/generic_fns/test_spin.py

Modified: 1.3/test_suite/unit_tests/generic_fns/test_spin.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/unit_tests/generic_fns/test_spin.py?rev=3466&r1=3465&r2=3466&view=diff
==============================================================================
--- 1.3/test_suite/unit_tests/generic_fns/test_spin.py (original)
+++ 1.3/test_suite/unit_tests/generic_fns/test_spin.py Sun Nov 11 11:12:44 
2007
@@ -24,7 +24,8 @@
 from unittest import TestCase
 
 # relax module imports.
-from generic_fns import spin
+from data import Data as relax_data_store
+from generic_fns import residue, spin
 
 
 
@@ -75,4 +76,26 @@
         relax_data_store['orig'].mol[0].res[0].spin[0].x = 2
 
 
+    def test_copy_between_molecules(self):
+        """Test the copying of the spin data between different molecules.
 
+        The function used is generic_fns.spin.copy().
+        """
+
+        # Set up the data.
+        self.setup_data()
+
+        # Copy the spin '222' from the first molecule, first residue to the 
second molecule, fifth residue.
+        spin.copy(spin_from='#Old mol:1@222', spin_to='#New mol:5@3')
+
+        # Test the original spin.
+        self.assertEqual(relax_data_store['orig'].mol[0].res[0].num, 1)
+        self.assertEqual(relax_data_store['orig'].mol[0].res[0].name, 'Ala')
+        self.assertEqual(relax_data_store['orig'].mol[0].res[0].spin[0].num, 
222)
+        self.assertEqual(relax_data_store['orig'].mol[0].res[0].spin[0].x, 2)
+
+        # Test the new spin.
+        self.assertEqual(relax_data_store['orig'].mol[1].res[0].num, 1)
+        self.assertEqual(relax_data_store['orig'].mol[1].res[0].name, 'Ala')
+        self.assertEqual(relax_data_store['orig'].mol[1].res[0].spin[0].num, 
222)
+        self.assertEqual(relax_data_store['orig'].mol[1].res[0].spin[0].x, 2)




Related Messages


Powered by MHonArc, Updated Sun Nov 11 12:20:15 2007