mailr9432 - /1.3/test_suite/unit_tests/_data/test___init__.py


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

Header


Content

Posted by edward on September 02, 2009 - 15:48:
Author: bugman
Date: Wed Sep  2 15:48:17 2009
New Revision: 9432

URL: http://svn.gna.org/viewcvs/relax?rev=9432&view=rev
Log:
Added a check for the __all__ list of the data package.


Modified:
    1.3/test_suite/unit_tests/_data/test___init__.py

Modified: 1.3/test_suite/unit_tests/_data/test___init__.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/unit_tests/_data/test___init__.py?rev=9432&r1=9431&r2=9432&view=diff
==============================================================================
--- 1.3/test_suite/unit_tests/_data/test___init__.py (original)
+++ 1.3/test_suite/unit_tests/_data/test___init__.py Wed Sep  2 15:48:17 2009
@@ -1,6 +1,6 @@
 
###############################################################################
 #                                                                            
 #
-# Copyright (C) 2007-2008 Edward d'Auvergne                                  
 #
+# Copyright (C) 2007-2009 Edward d'Auvergne                                  
 #
 #                                                                            
 #
 # This file is part of the program relax.                                    
 #
 #                                                                            
 #
@@ -21,22 +21,29 @@
 
###############################################################################
 
 # Python module imports.
-from unittest import TestCase
+from os import sep
+import sys
 
 # relax module imports.
-from data import Relax_data_store; ds = Relax_data_store()
+import data; ds = data.Relax_data_store()
+from test_suite.unit_tests.package_checking import PackageTestCase
 
 
 class Empty_container:
     """An empty data container."""
 
 
-class Test___init__(TestCase):
+class Test___init__(PackageTestCase):
     """Unit tests for the data.Relax_data_store class."""
 
     def setUp(self):
         """Set up a complex relax data store."""
 
+        # Package info.
+        self.package = data
+        self.package_name = 'data'
+        self.package_path = sys.path[0] + sep + 'data'
+        
         # Add an empty data container as a new pipe.
         ds['empty'] = Empty_container()
 




Related Messages


Powered by MHonArc, Updated Wed Sep 02 21:20:10 2009