Skip to content

Commit

Permalink
Format files using DocumentFormat
Browse files Browse the repository at this point in the history
  • Loading branch information
davidanthoff authored May 11, 2023
1 parent b604fe4 commit 8f9dbe9
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 17 deletions.
8 changes: 4 additions & 4 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using Documenter, Queryverse

makedocs(
modules=[Queryverse],
sitename="Queryverse.jl",
analytics="UA-132838790-1",
pages=[
modules=[Queryverse],
sitename="Queryverse.jl",
analytics="UA-132838790-1",
pages=[
"Introduction" => "index.md"
]
)
Expand Down
27 changes: 14 additions & 13 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,20 @@ using Test

@testset "Queryverse" begin

df = load(joinpath(@__DIR__, "testdata.csv")) |>
@query(i, begin
@select {i.Count, i.Year}
end) |>
@tee(save("testoutput.csv")) |>
# @tee(begin
# data_values() |>
# mark_point() |>
# encoding_x_ord(:Year) |>
# encoding_y_quant(:Count) |>
# save("testoutput.pdf")
# end) |>
DataFrame
df =
load(joinpath(@__DIR__, "testdata.csv")) |>
@query(i, begin
@select {i.Count, i.Year}
end) |>
@tee(save("testoutput.csv")) |>
# @tee(begin
# data_values() |>
# mark_point() |>
# encoding_x_ord(:Year) |>
# encoding_y_quant(:Count) |>
# save("testoutput.pdf")
# end) |>
DataFrame

@test size(df) == (2, 2)

Expand Down

0 comments on commit 8f9dbe9

Please sign in to comment.