Skip to content

Commit

Permalink
Merge pull request #2054 from tkf/append-rows
Browse files Browse the repository at this point in the history
Test append!(df, row_access_table)
  • Loading branch information
quinnj authored Dec 16, 2019
2 parents cac52ca + ffa4881 commit 4d323ca
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/tables.jl
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,9 @@ Base.propertynames(d::DuplicateNamesColumnTable) = (:a, :a, :b)
append!(df, etu)
@test size(df) == (6, 3)

append!(df, [nt])
@test size(df) == (7, 3)

# categorical values
cat = CategoricalVector(["hey", "there", "sailor"])
cat2 = [c for c in cat] # Vector of CategoricalString
Expand Down

0 comments on commit 4d323ca

Please sign in to comment.