Esempio n. 1
0
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
Esempio n. 2
0
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
Esempio n. 3
0
def test__read_pdb():
    """Test private _read_pdb"""
    ppdb = PandasPDB()
    txt = ppdb._read_pdb(TESTDATA_FILENAME)
    print(txt)
    assert txt == three_eiy
Esempio n. 4
0
def test__read_pdb():
    """Test private _read_pdb"""
    ppdb = PandasPDB()
    txt = ppdb._read_pdb(TESTDATA_FILENAME)
    print(txt)
    assert txt == three_eiy