test: add docstring to osbuildtest.TestCase

This commit is contained in:
Lars Karlitski 2019-09-29 19:53:17 +02:00 committed by Ondřej Budai
parent 2205e972d3
commit db6e933cb8

View file

@ -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")