diff --git a/test/osbuildtest.py b/test/osbuildtest.py index a233784b..750f96c4 100644 --- a/test/osbuildtest.py +++ b/test/osbuildtest.py @@ -9,6 +9,12 @@ import unittest class TestCase(unittest.TestCase): + """A TestCase to test running the osbuild program. + + Each test case can use `self.run_osbuild()` to run osbuild. A temporary + store is used, which can be accessed through `self.store`. + """ + def setUp(self): self.store = tempfile.mkdtemp(dir="/var/tmp")