From 4fec87ba9d7a0a4e5e961468af64bc9318647277 Mon Sep 17 00:00:00 2001 From: Alexej Jordan Date: Wed, 6 Oct 2021 23:33:59 +0200 Subject: [PATCH] included test case --- test/perlobj.jl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/perlobj.jl b/test/perlobj.jl index a3cabe41..440f5051 100644 --- a/test/perlobj.jl +++ b/test/perlobj.jl @@ -140,6 +140,10 @@ @test Polymake.get_attachment(Polymake.PropertyValue,test_polytope,"ATT") isa Polymake.PropertyValue @test Polymake.remove_attachment(test_polytope,"ATT") === nothing @test Polymake.get_attachment(test_polytope,"ATT") === nothing + + stra = Polymake.Array{String}(["hello", "world"]) + @test Polymake.attach(test_polytope, "STRA", stra) === nothing + # @test Polymake.get_attachment(test_polytope) .== ["hello", "world"] end @testset "tab-completion" begin