1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
import urllib2, py
def test_same_file():
# '_backend_test_c.py' is a copy of 'c/test_c.py' from the CFFI repo,
# with the header lines (up to '# _____') stripped.
url = 'https://bitbucket.org/cffi/cffi/raw/default/c/test_c.py'
source = urllib2.urlopen(url).read()
#
dest = py.path.local(__file__).join('..', '_backend_test_c.py').read()
#
source = source[source.index('# _____________'):]
if source.strip() != dest.strip():
raise AssertionError(
"Update test/_backend_test_c.py by copying it from "
"https://bitbucket.org/cffi/cffi/raw/default/c/test_c.py "
"and killing the import lines at the start")
def test_egginfo_version():
from pypy.module._cffi_backend import VERSION
line = "Version: %s\n" % VERSION
eggfile = py.path.local(__file__).join('..', '..', '..', '..', '..',
'lib_pypy', 'cffi.egg-info',
'PKG-INFO')
assert line in eggfile.readlines()
def test_app_version():
from pypy.module import _cffi_backend
from lib_pypy import cffi
assert _cffi_backend.VERSION == cffi.__version__
|