Exemplo n.º 1
0
 def test_parse_sort_string_noe(self):
     res = parse_sort_string(None)
     self.assertEqual([], res)
Exemplo n.º 2
0
 def test_parse_sort_string_asc(self):
     res = parse_sort_string('id')
     self.assertIn({'id': 'asc'}, res)