6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-11-16 18:15:09 +00:00
tutor/tests/test_scripts.py

19 lines
549 B
Python
Raw Normal View History

2019-05-11 18:41:04 +00:00
import unittest
import unittest.mock
from tutor.commands import config as tutor_config
2019-05-11 18:41:04 +00:00
from tutor import scripts
class DummyRunner(scripts.BaseRunner):
exec = unittest.mock.Mock()
class ScriptsTests(unittest.TestCase):
def test_run(self):
config = tutor_config.load_defaults()
runner = DummyRunner("/tmp", config)
rendered_script = runner.render("mysql-client", "createdatabases")
runner.run("mysql-client", "createdatabases")
runner.exec.assert_called_once_with("mysql-client", rendered_script)