mirror of
https://github.com/jopohl/urh.git
synced 2026-03-09 09:46:48 +01:00
26 lines
616 B
Python
26 lines
616 B
Python
import unittest
|
|
|
|
from tests.docker import docker_util
|
|
|
|
|
|
class TestInstallation(unittest.TestCase):
|
|
|
|
def test_archlinux(self):
|
|
self.assertTrue(docker_util.run_image("archlinux"))
|
|
|
|
def test_centos7(self):
|
|
self.assertTrue(docker_util.run_image("centos7"))
|
|
|
|
def test_debian8(self):
|
|
self.assertTrue(docker_util.run_image("debian8"))
|
|
|
|
def test_ubuntu1404(self):
|
|
self.assertTrue(docker_util.run_image("ubuntu1404"))
|
|
|
|
def test_ubuntu1604(self):
|
|
self.assertTrue(docker_util.run_image("ubuntu1604"))
|
|
|
|
def tearDown(self):
|
|
docker_util.remove_containers()
|
|
|