mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-14 01:04:09 +00:00
3b108d21de
This adds the basic feratures that we need for a working plugin system, but there are still many TODOs in the codebase.
13 lines
332 B
Python
13 lines
332 B
Python
import unittest
|
|
|
|
from tutorminio import plugin
|
|
|
|
|
|
class PluginTests(unittest.TestCase):
|
|
def test_patches(self):
|
|
patches = dict(plugin.patches())
|
|
self.assertIn("local-docker-compose-services", patches)
|
|
self.assertTrue(
|
|
patches["local-docker-compose-services"].startswith("# MinIO\n")
|
|
)
|