def test_parse_callback_from_module(self):
"""Test if the callback function can be loaded from a file"""
runner = AeoLiSRunner("aeolis.txt")
callback = runner.parse_callback("callback_example.py:mock_callback")
assert callable(callback)
assert callback.__name__ == "mock_callback"
assert callback() == True
Correct file paths are aeolis/tests/aeolis.txt and aeolis/tests/callback_example.py:mock_callback
This issue arises from an accidental change in test_model.py introduced in commit b63a8f0
Correct file paths are
aeolis/tests/aeolis.txt
andaeolis/tests/callback_example.py:mock_callback
This issue arises from an accidental change in test_model.py introduced in commit b63a8f0