summaryrefslogtreecommitdiff
path: root/tests/testutils/repo/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testutils/repo/__init__.py')
-rw-r--r--tests/testutils/repo/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/testutils/repo/__init__.py b/tests/testutils/repo/__init__.py
index 3516679aa..1123d6f5e 100644
--- a/tests/testutils/repo/__init__.py
+++ b/tests/testutils/repo/__init__.py
@@ -6,12 +6,14 @@ from .git import Git
from .bzr import Bzr
from .ostree import OSTree
from .tar import Tar
+from .zip import Zip
ALL_REPO_KINDS = OrderedDict()
ALL_REPO_KINDS['git'] = Git
ALL_REPO_KINDS['bzr'] = Bzr
ALL_REPO_KINDS['ostree'] = OSTree
ALL_REPO_KINDS['tar'] = Tar
+ALL_REPO_KINDS['zip'] = Zip
# create_repo()