mirror of
https://github.com/jopohl/urh.git
synced 2026-03-07 16:56:48 +01:00
25 lines
609 B
Python
25 lines
609 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_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 test_kali(self):
|
|
self.assertTrue(docker_util.run_image("kali"))
|
|
|
|
def tearDown(self):
|
|
docker_util.remove_containers()
|