File tree 2 files changed +18
-17
lines changed
2 files changed +18
-17
lines changed Original file line number Diff line number Diff line change 1
1
using Documenter, Queryverse
2
2
3
3
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= [
8
8
" Introduction" => " index.md"
9
9
]
10
10
)
Original file line number Diff line number Diff line change @@ -3,19 +3,20 @@ using Test
3
3
4
4
@testset " Queryverse" begin
5
5
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
19
20
20
21
@test size (df) == (2 , 2 )
21
22
You can’t perform that action at this time.
0 commit comments