1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-24 21:24:19 +00:00
scrapy/tests/__init__.py

19 lines
429 B
Python
Raw Normal View History

"""
2014-07-30 16:53:28 -03:00
tests: this package contains all Scrapy unittests
To run all Scrapy unittests go to Scrapy main dir and type:
bin/runtests.sh
If you're in windows use runtests.bat instead.
"""
import os
tests_datadir = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'sample_data')
def get_testdata(*paths):
"""Return test data"""
path = os.path.join(tests_datadir, *paths)
2009-05-15 19:19:05 -03:00
return open(path, 'rb').read()