mailr3491 - /1.3/test_suite/unit_tests/generic_fns/test_residue.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 - 20:29:
Author: bugman
Date: Sun Nov 11 20:29:26 2007
New Revision: 3491

URL: http://svn.gna.org/viewcvs/relax?rev=3491&view=rev
Log:
Split the 'test_copy_within_molecule_fail' unit test in two, for the 2 
failures.


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

Modified: 1.3/test_suite/unit_tests/generic_fns/test_residue.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/unit_tests/generic_fns/test_residue.py?rev=3491&r1=3490&r2=3491&view=diff
==============================================================================
--- 1.3/test_suite/unit_tests/generic_fns/test_residue.py (original)
+++ 1.3/test_suite/unit_tests/generic_fns/test_residue.py Sun Nov 11 20:29:26 
2007
@@ -206,8 +206,8 @@
         self.assertEqual(relax_data_store['orig'].mol[0].res[3].spin[0].x, 2)
 
 
-    def test_copy_within_molecule_fail(self):
-        """Test the failure of the copying of the residue data within a 
molecule.
+    def test_copy_within_molecule_fail1(self):
+        """The failure of copying residue data within a molecule of a 
non-existent residue.
 
         The function used is generic_fns.residue.copy().
         """
@@ -218,6 +218,17 @@
 
         # Copy a non-existent residue (1 Met).
         self.assertRaises(RelaxError, residue.copy, res_from=':Met', 
res_to=':2,Gly')
+
+
+    def test_copy_within_molecule_fail2(self):
+        """The failure of copying residue data within a molecule to a 
residue which already exists.
+
+        The function used is generic_fns.residue.copy().
+        """
+
+        # Create a few residues.
+        residue.create(1, 'Ala')
+        residue.create(-1, 'His')
 
         # Copy a residue to a number which already exists.
         self.assertRaises(RelaxError, residue.copy, res_from=':1', 
res_to=':-1,Gly')




Related Messages


Powered by MHonArc, Updated Sun Nov 11 20:40:20 2007