No Description
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.

test_password.py 371B

12345678910111213
  1. import unittest
  2. from lodel.leapi.datahandlers.datas import Password as Testee
  3. class PasswordTestCase(unittest.TestCase):
  4. def test_base_type_property_value_equals_password(self):
  5. self.assertEqual(Testee.base_type, 'password')
  6. def test_help_property_string_is_set(self):
  7. self.assertEqual(type(Testee.help), str)