unit test

This commit is contained in:
Mike McLean 2025-06-25 17:50:40 -04:00
parent 1cd8585b29
commit bf27153e1e

View file

@ -12,6 +12,7 @@ class TestGetNextBuild(unittest.TestCase):
self.get_next_release = mock.patch('kojihub.kojihub.get_next_release').start()
self.new_build = mock.patch('kojihub.kojihub.new_build').start()
self._dml = mock.patch('kojihub.kojihub._dml').start()
self.Savepoint = mock.patch('kojihub.kojihub.Savepoint').start()
self.binfo = {'name': 'name', 'version': 'version'}
def tearDown(self):