Fix LXC.list_containers to release GIL

This commit is contained in:
John Keiser 2014-03-25 13:20:20 -07:00 committed by Andre Nathan
parent acc636b1c8
commit 8514f53b99
2 changed files with 47 additions and 26 deletions

View file

@ -45,6 +45,7 @@ class TestLXCCreated < Test::Unit::TestCase
end
def test_container_rename
@container.stop if @container.running?
renamed = @container.rename(@new_name)
assert_equal(@new_name, renamed.name)
rerenamed = renamed.rename(@name)