From db6e933cb86c5aa6c0045049cb8e4dc7e79c429e Mon Sep 17 00:00:00 2001 From: Lars Karlitski Date: Sun, 29 Sep 2019 19:53:17 +0200 Subject: [PATCH] test: add docstring to osbuildtest.TestCase --- test/osbuildtest.py | 6 ++++++ 1 file changed, 6 insertions(+) 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")