[Pymoul-svn] SF.net SVN: pymoul: [216] binaryfile/trunk
Status: Alpha
Brought to you by:
tiran
From: <ti...@us...> - 2007-02-28 12:06:49
|
Revision: 216 http://pymoul.svn.sourceforge.net/pymoul/?rev=216&view=rev Author: tiran Date: 2007-02-28 04:06:48 -0800 (Wed, 28 Feb 2007) Log Message: ----------- Changed imports Modified Paths: -------------- binaryfile/trunk/Makefile binaryfile/trunk/src/binaryfile/tests.py Modified: binaryfile/trunk/Makefile =================================================================== --- binaryfile/trunk/Makefile 2007-02-28 12:03:04 UTC (rev 215) +++ binaryfile/trunk/Makefile 2007-02-28 12:06:48 UTC (rev 216) @@ -32,7 +32,7 @@ # What should the default be? test: - $(PYTHON) src/binaryfile/tests.py + PYTHONPATH=src $(PYTHON) src/binaryfile/tests.py egg: egg24 egg25 Modified: binaryfile/trunk/src/binaryfile/tests.py =================================================================== --- binaryfile/trunk/src/binaryfile/tests.py 2007-02-28 12:03:04 UTC (rev 215) +++ binaryfile/trunk/src/binaryfile/tests.py 2007-02-28 12:06:48 UTC (rev 216) @@ -10,7 +10,7 @@ from doctest import DocTestSuite from tempfile import mkstemp -from binary import BinaryFile +from binaryfile.binary import BinaryFile class BinaryFileTest(unittest.TestCase): def setUp(self): This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |