def test_read_table(self):
     script_path = os.path.dirname(os.path.realpath(__file__))
     df = ge.read_table(
         script_path+'/test_sets/Titanic.csv',
         sep=','
     )
     assert df['Name'][0] == 'Allen, Miss Elisabeth Walton'
     assert isinstance(df, PandasDataset)
Beispiel #2
0
 def test_read_table(self):
     script_path = os.path.dirname(os.path.realpath(__file__))
     df = ge.read_table(script_path + "/test_sets/Titanic.csv", sep=",")
     assert df["Name"][0] == "Allen, Miss Elisabeth Walton"
     assert isinstance(df, PandasDataset)