Skip to content

Commit 797c148

Browse files
authored
Format files using DocumentFormat
1 parent cd7e66b commit 797c148

File tree

2 files changed

+18
-17
lines changed

2 files changed

+18
-17
lines changed

Diff for: docs/make.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using Documenter, Queryverse
22

33
makedocs(
4-
modules=[Queryverse],
5-
sitename="Queryverse.jl",
6-
analytics="UA-132838790-1",
7-
pages=[
4+
modules=[Queryverse],
5+
sitename="Queryverse.jl",
6+
analytics="UA-132838790-1",
7+
pages=[
88
"Introduction" => "index.md"
99
]
1010
)

Diff for: test/runtests.jl

+14-13
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,20 @@ using Test
33

44
@testset "Queryverse" begin
55

6-
df = load(joinpath(@__DIR__, "testdata.csv")) |>
7-
@query(i, begin
8-
@select {i.Count, i.Year}
9-
end) |>
10-
@tee(save("testoutput.csv")) |>
11-
# @tee(begin
12-
# data_values() |>
13-
# mark_point() |>
14-
# encoding_x_ord(:Year) |>
15-
# encoding_y_quant(:Count) |>
16-
# save("testoutput.pdf")
17-
# end) |>
18-
DataFrame
6+
df =
7+
load(joinpath(@__DIR__, "testdata.csv")) |>
8+
@query(i, begin
9+
@select {i.Count, i.Year}
10+
end) |>
11+
@tee(save("testoutput.csv")) |>
12+
# @tee(begin
13+
# data_values() |>
14+
# mark_point() |>
15+
# encoding_x_ord(:Year) |>
16+
# encoding_y_quant(:Count) |>
17+
# save("testoutput.pdf")
18+
# end) |>
19+
DataFrame
1920

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

0 commit comments

Comments
 (0)