Remove LXC.arch_to_personality

It depended on a function from liblxc, which is no longer exported due
to 63c2a0bf06

Signed-off-by: Jakub Skokan <jakub.skokan@havefun.cz>
This commit is contained in:
Jakub Skokan 2020-10-12 15:56:48 +02:00
parent b3f43f2739
commit 60e87d45c8
2 changed files with 0 additions and 35 deletions

View file

@ -17,9 +17,4 @@ class TestLXCClassMethods < Test::Unit::TestCase
def test_list_containers
assert(LXC.list_containers.include?('test'))
end
def test_arch_to_personality
assert_equal(:linux32, LXC.arch_to_personality('x86'))
assert_equal(:linux, LXC.arch_to_personality('x86_64'))
end
end