/usr/local/lib64/python3.6/site-packages/pandas/tests/io/sas
NameSizeModeActions
__pycache__/-0755rm
test_sas.py6950644editdlrm
test_sas7bdat.py115230644editdlrm
test_xport.py51570644editdlrm
__init__.py00644editdlrm
Edit: /usr/local/lib64/python3.6/site-packages/pandas/tests/io/sas/test_sas.py (695B)
from io import StringIO import pytest from pandas import read_sas import pandas._testing as tm class TestSas: def test_sas_buffer_format(self): # see gh-14947 b = StringIO("") msg = ( "If this is a buffer object rather than a string " "name, you must specify a format string" ) with pytest.raises(ValueError, match=msg): read_sas(b) def test_sas_read_no_format_or_extension(self): # see gh-24548 msg = "unable to infer format of SAS file" with tm.ensure_clean("test_file_no_extension") as path: with pytest.raises(ValueError, match=msg): read_sas(path)