mirror of
https://pagure.io/fm-orchestrator.git
synced 2026-02-10 00:25:00 +08:00
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>
22 lines
304 B
Python
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
|