mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-10 23:30:59 +00:00
e56918bf47
This command has always been clunky. It is now removed in favour of the `-m/--mount` option. Close https://github.com/overhangio/2u-tutor-adoption/issues/88 Close https://github.com/overhangio/2u-tutor-adoption/issues/89
11 lines
282 B
Python
11 lines
282 B
Python
import unittest
|
|
|
|
from .base import TestCommandMixin
|
|
|
|
|
|
class DevTests(unittest.TestCase, TestCommandMixin):
|
|
def test_dev_help(self) -> None:
|
|
result = self.invoke(["dev", "--help"])
|
|
self.assertEqual(0, result.exit_code)
|
|
self.assertIsNone(result.exception)
|