Author: bugman
Date: Tue Nov 20 11:26:09 2007
New Revision: 3640
URL: http://svn.gna.org/viewcvs/relax?rev=3640&view=rev
Log:
Implemented the new_name arg unit test for the molecule.rename() user 
function.
Modified:
    1.3/test_suite/unit_tests/prompt/test_molecule.py
Modified: 1.3/test_suite/unit_tests/prompt/test_molecule.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/unit_tests/prompt/test_molecule.py?rev=3640&r1=3639&r2=3640&view=diff
==============================================================================
--- 1.3/test_suite/unit_tests/prompt/test_molecule.py (original)
+++ 1.3/test_suite/unit_tests/prompt/test_molecule.py Tue Nov 20 11:26:09 2007
@@ -157,16 +157,16 @@
 
 
     def test_rename_argfail_new_name(self):
-        """Test the proper failure of the spin.rename() user function for 
the new_name argument."""
-
-        # Loop over the data types.
-        for data in return_data_types():
-            # Catch the str arguments, and skip them.
-            if data[0] == 'str':
-                continue
-
-            # The argument test.
-            self.assertRaises(RelaxStrError, self.spin_fns.rename, 
new_name=data[1])
+        """Test the proper failure of the molecule.rename() user function 
for the new_name argument."""
+
+        # Loop over the data types.
+        for data in return_data_types():
+            # Catch the str arguments, and skip them.
+            if data[0] == 'str':
+                continue
+
+            # The argument test.
+            self.assertRaises(RelaxStrError, self.molecule_fns.rename, 
new_name=data[1])
 
 
     def test_renumber_argfail_spin_id(self):