mailr5869 - /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 20, 2008 - 19:55:
Author: bugman
Date: Sun Apr 20 19:55:37 2008
New Revision: 5869

URL: http://svn.gna.org/viewcvs/relax?rev=5869&view=rev
Log:
Added 5 unit test for the Selection.contains_mol() method.


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=5869&r1=5868&r2=5869&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 Sun Apr 20 
19:55:37 2008
@@ -180,6 +180,56 @@
         self.assertEqual(obj._union[0]._intersect[1].spins, [])
 
 
+    def test_Selection_contains_mol1(self):
+        """The Selection object "#Ap4Aase:Glu | #RNA@C8" contains the 
molecule 'RNA'."""
+
+        # The Selection object.
+        obj = selection.Selection("#Ap4Aase:Glu | #RNA@C8")
+
+        # Check if the molecule is in the selection.
+        self.assert_(obj.contains_mol('RNA'))
+
+
+    def test_Selection_contains_mol2(self):
+        """The Selection object "#Ap4Aase:Glu & #RNA@C8" does not contain 
the molecule 'RNA'."""
+
+        # The Selection object.
+        obj = selection.Selection("#Ap4Aase:Glu & #RNA@C8")
+
+        # Check if the molecule is in the selection.
+        self.assert_(not obj.contains_mol('RNA'))
+
+
+    def test_Selection_contains_mol3(self):
+        """The Selection object "#Ap4Aase:Glu | #RNA@C8" does not contain 
the molecule 'XXX'."""
+
+        # The Selection object.
+        obj = selection.Selection("#Ap4Aase:Glu | #RNA@C8")
+
+        # Check if the molecule is in the selection.
+        self.assert_(not obj.contains_mol('XXX'))
+
+
+    def test_Selection_contains_mol4(self):
+        """The Selection object "#Ap4Aase:Glu | #RNA@C8" does not contain 
the molecule None."""
+
+        # The Selection object.
+        obj = selection.Selection("#Ap4Aase:Glu | #RNA@C8")
+
+        # Check if the molecule is in the selection.
+        self.assert_(not obj.contains_mol())
+
+
+    def test_Selection_contains_mol5(self):
+        """The Selection object ":Glu" does contain the molecule None."""
+
+        # The Selection object.
+        obj = selection.Selection(":Glu")
+
+        # Check if the molecule is in the selection.
+        self.assert_(obj.contains_mol())
+
+
     def test_Selection_full_spin_id(self):
         """Test the Selection object for the single spin identifier 
'#Ap4Aase:2&:Glu@63&@NH'."""
 




Related Messages


Powered by MHonArc, Updated Sun Apr 20 20:00:15 2008