Skip to content

Commit 7cbdda5

Browse files
author
piever
committed
missing test
1 parent a4a4a3b commit 7cbdda5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

test/runtests.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ end
7575
t = table([1,2,3], [4,5,6], [0.1, 0.2, 0.3], names = [:x, :y, :z])
7676
@test (@where_vec t (:x .< 3) .& (:z .== 0.2)) == view(t, [2])
7777
@test @where_vec(t, 1:2) == view(t, 1:2)
78+
@test @where_vec(rows(t), 1:2) == view(t, 1:2)
7879
@test @where_vec((:x .< 3) .& (:z .== 0.2))(t) == view(t, [2])
7980
@test (@where t (:x < 3) .& (:z == 0.2)) == view(t, [2])
8081
@test @where((:x < 3) .& (:z == 0.2))(t) == view(t, [2])

0 commit comments

Comments
 (0)