Source code for posydon.unit_tests.test_template

"""Unit tests of posydon/user_modules/my_flow_chart_example.py
"""

__authors__ = [
    "John Doe <John.Doe@email>"
]

# import the module which will be tested
import posydon.user_modules.my_flow_chart_example as totest

# import other needed code for the tests, which is not already imported in the
# module you like to test


# define single test functions
[docs] def test_name(): pass
# define test classes collecting several test functions
[docs] class TestClass:
[docs] def test_name(self): assert True