12 lines
158 B
Julia
12 lines
158 B
Julia
@testset "Batching" begin
|
|
|
|
bs = Batch([[1,2,3],[4,5,6]])
|
|
|
|
@test typeof(bs) <: Batch
|
|
|
|
@test bs == [[1,2,3],[4,5,6]]
|
|
|
|
@test rawbatch(bs) == [1 2 3; 4 5 6]
|
|
|
|
end
|