예제 #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)
예제 #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)
예제 #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)
예제 #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)
예제 #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)
예제 #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)