def test_is_container_with_upstart_not_container(self,
call,
init_is_systemd,
mock_os):
init_is_systemd.return_value = False
mock_os.path.exists.return_value = False
self.assertFalse(host.is_container())
mock_os.path.exists.assert_called_with('/run/container_type')
评论列表
文章目录