From d80f5e2579b5e04c52a3e6bf94f5727295d5df35 Mon Sep 17 00:00:00 2001 From: Jonathan Malmaud Date: Mon, 25 Jul 2022 10:09:48 -0700 Subject: [PATCH] Update tests --- test/runtests.jl | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/test/runtests.jl b/test/runtests.jl index af39b2d..93642a0 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -73,3 +73,11 @@ julia_df = DataFrames.DataFrame(py_df) julia_df= DataFrames.DataFrame(C = 1:4, A = 5:8, B = 9:12) py_df = Pandas.DataFrame(julia_df) @test all(Pandas.columns(py_df) .== ["C","A","B"]) + +df1 = Pandas.Series(1:2) +df2 = Pandas.Series(1:2) +df3 = Pandas.Series(3:4) + +@test all(df1 == df1) +@test all(df1 == df2) +@test df1 != [1, 2]