diff --git a/tangostationcontrol/tangostationcontrol/integration_test/default/devices/test_device_docker.py b/tangostationcontrol/tangostationcontrol/integration_test/default/devices/test_device_docker.py deleted file mode 100644 index adc0dff0ac3f094a7169ee4889a3d378656c72ab..0000000000000000000000000000000000000000 --- a/tangostationcontrol/tangostationcontrol/integration_test/default/devices/test_device_docker.py +++ /dev/null @@ -1,35 +0,0 @@ -# -*- coding: utf-8 -*- -# -# This file is part of the LOFAR 2.0 Station Software -# -# -# -# Distributed under the terms of the APACHE license. -# See LICENSE.txt for more info. - -from .base import AbstractTestBases - -import time - -class TestDeviceDocker(AbstractTestBases.TestDeviceBase): - - def setUp(self): - super().setUp("STAT/Docker/1") - - def test_toggle(self): - """ - Test turning off and on a running docker container - """ - self.proxy.boot() - - # Turn the recv container off and check that it is indeed turned off - self.proxy.device_recv_RW = False - time.sleep(10) - self.assertEqual(self.device_recv_R, False) - - # Turn the recv container on and check that it is indeed turned on - self.proxy.device_recv_RW = True - self.assertEqual(self.device_recv_R, True) - - -