Esempio n. 1
0
def test_pickle_path_localpath():
    df = tm.makeDataFrame()
    result = tm.round_trip_localpath(df.to_pickle, pd.read_pickle)
    tm.assert_frame_equal(df, result)
Esempio n. 2
0
 def test_path_localpath(self):
     df = tm.makeDataFrame()
     result = tm.round_trip_localpath(df.to_msgpack, read_msgpack)
     tm.assert_frame_equal(df, result)
Esempio n. 3
0
 def test_path_localpath(self):
     df = tm.makeDataFrame().reset_index()
     result = tm.round_trip_localpath(df.to_feather, pd.read_feather)
     tm.assert_frame_equal(df, result)
Esempio n. 4
0
 def test_path_localpath(self):
     df = tm.makeDataFrame()
     result = tm.round_trip_localpath(df.to_msgpack, read_msgpack)
     tm.assert_frame_equal(df, result)
Esempio n. 5
0
def test_pickle_path_localpath():
    df = tm.makeDataFrame()
    result = tm.round_trip_localpath(df.to_pickle, pd.read_pickle)
    tm.assert_frame_equal(df, result)
Esempio n. 6
0
 def test_path_localpath(self):
     df = tm.makeDataFrame().reset_index()
     result = tm.round_trip_localpath(df.to_feather, pd.read_feather)
     tm.assert_frame_equal(df, result)