Source code for cis_interface.examples.tests.test_gs_lesson4b

import os
from cis_interface.examples.tests import TestExample


[docs]class TestExampleGS4b(TestExample): r"""Test the Getting Started Lesson 4b example.""" example_name = 'gs_lesson4b' @property def input_files(self): r"""Input file.""" return [os.path.join(self.yamldir, 'Input', 'input.txt')] @property def output_files(self): r"""Output file.""" return [os.path.join(self.yamldir, 'output.txt')]