Re: [Zope] How to access the content of a file in a test suite in a portable way

2008-09-18 Thread Israel Saeta PĂ©rez
On Thu, Sep 18, 2008 at 4:16 AM, Marco Bizzarri [EMAIL PROTECTED] wrote: Thanks, Peter; but that does not work inside a test case run as: python tests/testMyTestSuite.py I'm using at the moment: def product_prefix(self): return sys.modules['Products.MyProduct'].__path__[0]

[Zope] How to access the content of a file in a test suite in a portable way

2008-09-17 Thread Marco Bizzarri
Hi all. I'm writing a number of acceptance tests where I need to compare whether the content of a text file is equals to another file. The comparision files are in a subdirectory of the acceptance test directory itself, therefore, once I know where my product is on the filesystem, I can access

Re: [Zope] How to access the content of a file in a test suite in a portable way

2008-09-17 Thread Peter Bengtsson
From within the product class you can do this: from Globals import package_home class MyProduct(...): meta_type = '...' def do_something(self): print package_home(globals()) 2008/9/17 Marco Bizzarri [EMAIL PROTECTED]: Hi all. I'm writing a number of acceptance tests where I

Re: [Zope] How to access the content of a file in a test suite in a portable way

2008-09-17 Thread Marco Bizzarri
On Wed, Sep 17, 2008 at 12:58 PM, Peter Bengtsson [EMAIL PROTECTED] wrote: From within the product class you can do this: from Globals import package_home class MyProduct(...): meta_type = '...' def do_something(self): print package_home(globals()) Thanks, Peter; but that