Esempio n. 1
0
 def test_split_uuid_fifth_piece_too_short(self):
     with self.assertRaises(ValueError):
         split_uuid('7575a428-aaf7-4c2e-929e-1e2a0ab59e1')
Esempio n. 2
0
 def test_split_uuid_too_few_pieces(self):
     with self.assertRaises(ValueError):
         split_uuid('7575a428-4c2e-929e-1e2a0ab59e16')
Esempio n. 3
0
 def test_split_uuid_fourth_piece_too_long(self):
     with self.assertRaises(ValueError):
         split_uuid('7575a428-aaf7-4c2e-929ea-1e2a0ab59e16')
Esempio n. 4
0
 def test_split_uuid_valid(self):
     self.assertEqual(split_uuid('7575a428-aaf7-4c2e-929e-1e2a0ab59e16'),
                      ('7575a428aaf7', '4c2e929e', '1e2a0ab59e16'))
Esempio n. 5
0
 def test_split_uuid_fifth_piece_too_short(self):
     with self.assertRaises(ValueError):
         split_uuid('7575a428-aaf7-4c2e-929e-1e2a0ab59e1')
Esempio n. 6
0
 def test_split_uuid_fourth_piece_too_long(self):
     with self.assertRaises(ValueError):
         split_uuid('7575a428-aaf7-4c2e-929ea-1e2a0ab59e16')
Esempio n. 7
0
 def test_split_uuid_too_few_pieces(self):
     with self.assertRaises(ValueError):
         split_uuid('7575a428-4c2e-929e-1e2a0ab59e16')
Esempio n. 8
0
 def test_split_uuid_valid(self):
     self.assertEqual(
         split_uuid('7575a428-aaf7-4c2e-929e-1e2a0ab59e16'),
         ('7575a428aaf7', '4c2e929e', '1e2a0ab59e16')
     )