Skip to content

Commit

Permalink
Add cube tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Glenn Moynihan committed Jun 30, 2021
1 parent 9890dfd commit af4b1b4
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions test/types/cube.jl
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
@testset "apply_append" begin

@testset "OneToOne" begin

T = FakeOneToOneTransform()

@test FeatureTransforms.apply_append(x, T; append_dim=1) == vcat(x, ones(2, 3, 4))
Expand All @@ -73,7 +72,6 @@
end

@testset "OneToMany" begin

T = FakeOneToManyTransform()

@test_throws DimensionMismatch FeatureTransforms.apply_append(x, T; append_dim=1)
Expand All @@ -91,7 +89,6 @@
end

@testset "ManyToOne" begin

T = FakeManyToOneTransform()

@test isequal(
Expand All @@ -111,7 +108,6 @@
end

@testset "ManyToMany" begin

T = FakeManyToManyTransform()

@test_throws DimensionMismatch FeatureTransforms.apply_append(x, T; append_dim=1)
Expand Down

0 comments on commit af4b1b4

Please sign in to comment.