Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ using Test
@testset "Core" begin

for filename in readdir(joinpath(@__DIR__, "..", "data", "data"))
if splitext(filename)[2] == ".json" || splitext(filename)[2] == ".csv"
if !in(splitdir(filename)[2], ["earthquakes.json", "graticule.json", "londonBoroughs.json", "londonTubeLines.json", "miserables.json", "sf-temps.csv", "us-10m.json", "world-110m.json", "annual-precip.json", "volcano.json"])
vd = dataset(filename)
if splitext(filename)[2] == ".json" || splitext(filename)[2] == ".csv"
if !in(splitdir(filename)[2], ["earthquakes.json", "graticule.json", "londonBoroughs.json", "londonTubeLines.json", "miserables.json", "sf-temps.csv", "us-10m.json", "world-110m.json", "annual-precip.json", "volcano.json"])
vd = dataset(filename)

@test IteratorInterfaceExtensions.isiterable(vd) == true
@test TableTraits.isiterabletable(vd) == true
@test IteratorInterfaceExtensions.isiterable(vd) == true
@test TableTraits.isiterabletable(vd) == true

cvd = collect(vd)
cvd = collect(vd)

@test isa(cvd, Array)
end
end
@test isa(cvd, Array)
end
end
end

df = dataset("iris")

Expand Down