You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112131415 |
- import unittest
-
- from lodel.leapi.datahandlers.datas import Text
-
-
- class TextTestCase(unittest.TestCase):
-
- def test_check_data(self):
- test_value = """ Ceci est un texte multiligne pour tester le check
- sur le datahandler
- Text
- """
- test_text = Text()
- _, error = test_text.check_data_value(test_value)
- self.assertIsNone(error)
|