def test__read_pdb_gz(): """Test public _read_pdb with gzip files""" ppdb = PandasPDB() txt = ppdb._read_pdb(TESTDATA_FILENAME_GZ) assert txt == three_eiy
def test__read_pdb(): """Test private _read_pdb""" ppdb = PandasPDB() txt = ppdb._read_pdb(TESTDATA_FILENAME) print(txt) assert txt == three_eiy