mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-17 02:25:10 +00:00
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")
|
||
|
)
|