Files
fm-orchestrator/tests/integration/utils.py
Hunor Csomortáni 0066c79dae Bootstrap integration tests
This is the first step to have some tests, that we could run against an
MBS instance, to check that it's functionally correct. Ultimately, these
will replace the test scripts (`contrib/test-*`).

This doesn't really do anything yet, but I would like to make sure that
everyone is on the same page regarding how this will be set up.

Signed-off-by: Hunor Csomortáni <csomh@redhat.com>
2019-10-24 10:16:16 +02:00

22 lines
304 B
Python

# -*- coding: utf-8 -*-
# SPDX-License-Identifier: MIT
class MBS:
def __init__(self, api):
self._api = api
class Git:
def __init__(self, url):
self._url = url
class Koji:
def __init__(self, server, topurl):
self._server = server
self._topurl = topurl