mailr5857 - /1.3/test_suite/unit_tests/_generic_fns/_structure/test_scientific.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 - 18:45:
Author: bugman
Date: Sun Apr 20 18:45:36 2008
New Revision: 5857

URL: http://svn.gna.org/viewcvs/relax?rev=5857&view=rev
Log:
Fix for the test_load_structures() unit test.


Modified:
    1.3/test_suite/unit_tests/_generic_fns/_structure/test_scientific.py

Modified: 1.3/test_suite/unit_tests/_generic_fns/_structure/test_scientific.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/unit_tests/_generic_fns/_structure/test_scientific.py?rev=5857&r1=5856&r2=5857&view=diff
==============================================================================
--- 1.3/test_suite/unit_tests/_generic_fns/_structure/test_scientific.py 
(original)
+++ 1.3/test_suite/unit_tests/_generic_fns/_structure/test_scientific.py Sun 
Apr 20 18:45:36 2008
@@ -21,6 +21,7 @@
 
###############################################################################
 
 # Python module imports.
+import sys
 from unittest import TestCase
 
 # relax module imports.
@@ -33,6 +34,14 @@
 
     def setUp(self):
         """Set up for all the Scientific Python PDB structural object unit 
tests."""
+
+        # Get the relative path of relax.
+        self.path = sys.path[0]
+        if self.path == '.':
+            self.path = sys.path[-1]
+
+        # The path to a PDB file.
+        self.test_pdb_path = self.path+'/test_suite/shared_data/test.pdb'
 
         # Instantiate the structural data object.
         self.data = Scientific_data()
@@ -49,10 +58,7 @@
 
 
     def test_load_structures(self):
-        """Test the loading of a PDB file.
-
-        This tests the Scientific_data.load_structures() method.
-        """
+        """Load a PDB file using Scientific_data.load_structures()."""
 
         # Load the PDB file.
-        self.data.load_structures()
+        self.data.load_structures(self.test_pdb_path)




Related Messages


Powered by MHonArc, Updated Sun Apr 20 19:00:32 2008