Example #1
0
    def test_none_error(self):
        with self.assertRaises(TypeError):
            nameable_string('none')

        with self.assertRaises(TypeError):
            nameable_string(None)
Example #2
0
    def test_number_start_error(self):
        with self.assertRaises(TypeError):
            nameable_string('1thing')

        with self.assertRaises(TypeError):
            nameable_string('1')
Example #3
0
 def test_empty_error(self):
     with self.assertRaises(TypeError):
         nameable_string('')
Example #4
0
 def test_ok(self):
     lib = 'libName'
     self.assertEqual('libName', nameable_string(lib))
Example #5
0
    def test_space_error(self):
        with self.assertRaises(TypeError):
            nameable_string(' ')

        with self.assertRaises(TypeError):
            nameable_string('thing thing')
Example #6
0
 def test_underscore_error(self):
     with self.assertRaises(TypeError):
         nameable_string('thing_thing')
Example #7
0
 def test_comma_error(self):
     with self.assertRaises(TypeError):
         nameable_string('thing,thing')
Example #8
0
 def test_semicolon_error(self):
     with self.assertRaises(TypeError):
         nameable_string('thing;thing')