mailr5926 - /1.3/test_suite/unit_tests/_generic_fns/test_selection.py


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

Header


Content

Posted by edward on April 21, 2008 - 16:21:
Author: bugman
Date: Mon Apr 21 16:21:04 2008
New Revision: 5926

URL: http://svn.gna.org/viewcvs/relax?rev=5926&view=rev
Log:
Added a unit test to test that the Selection object has no memory of previous 
selections.


Modified:
    1.3/test_suite/unit_tests/_generic_fns/test_selection.py

Modified: 1.3/test_suite/unit_tests/_generic_fns/test_selection.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/unit_tests/_generic_fns/test_selection.py?rev=5926&r1=5925&r2=5926&view=diff
==============================================================================
--- 1.3/test_suite/unit_tests/_generic_fns/test_selection.py (original)
+++ 1.3/test_suite/unit_tests/_generic_fns/test_selection.py Mon Apr 21 
16:21:04 2008
@@ -319,6 +319,37 @@
         self.assert_((cdp.mol[1], cdp.mol[1].res[1], 
cdp.mol[1].res[1].spin[1]) not in obj)
 
 
+    def test_Selection_memory(self):
+        """Test that the Selection object has no memory of previous 
selections."""
+
+        # The original Selection object.
+        obj = selection.Selection(":1&:Glu@16&@N")
+
+        # The new Selection object.
+        obj = selection.Selection(":13&:Pro")
+
+        # Test the highest level object.
+        self.assertEqual(obj._union, None)
+        self.assertNotEqual(obj._intersect, None)
+        self.assertEqual(obj.molecules, [])
+        self.assertEqual(obj.residues, [])
+        self.assertEqual(obj.spins, [])
+
+        # Test the 1st intersection.
+        self.assertEqual(obj._intersect[0]._union, None)
+        self.assertEqual(obj._intersect[0]._intersect, None)
+        self.assertEqual(obj._intersect[0].molecules, [])
+        self.assertEqual(obj._intersect[0].residues, [13])
+        self.assertEqual(obj._intersect[0].spins, [])
+
+        # Test the 2nd intersection.
+        self.assertEqual(obj._intersect[1]._union, None)
+        self.assertEqual(obj._intersect[1]._intersect, None)
+        self.assertEqual(obj._intersect[1].molecules, [])
+        self.assertEqual(obj._intersect[1].residues, ['Pro'])
+        self.assertEqual(obj._intersect[1].spins, [])
+
+
     def test_count_spins(self):
         """Test that the number of spins can be properly counted.
 




Related Messages


Powered by MHonArc, Updated Mon Apr 21 17:20:11 2008