mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-10 23:30:59 +00:00
487ca89885
We somehow forgot to include these files in a previous commit...
17 lines
539 B
Python
17 lines
539 B
Python
from __future__ import annotations
|
|
|
|
from tests.helpers import PluginsTestCase
|
|
from tutor import hooks, plugins
|
|
|
|
|
|
class PluginsTests(PluginsTestCase):
|
|
def test_env_patches_updated_on_new_plugin(self) -> None:
|
|
self.assertEqual([], list(plugins.iter_patches("mypatch")))
|
|
|
|
hooks.Filters.ENV_PATCHES.add_item(("mypatch", "hello!"))
|
|
|
|
# env patches cache should be cleared on new plugin
|
|
hooks.Actions.PLUGIN_LOADED.do("dummyplugin")
|
|
|
|
self.assertEqual(["hello!"], list(plugins.iter_patches("mypatch")))
|