I'm writing a unit tests, one of them checks a method that returns a list containing sub lists [[],[],[]], the order of the sublists does not matter only the quantity of sublists and their values, the problem is that TestCase.assertItemsEqual() is deprecated and there is no TestCase.assertElementsEqual() method. To solve the problem I decided to sort the list returned from the method and the list from my unit test and compare the sorted versions, but the problem is that the sublists always have a None value and sorting raises a error:
>>> sorted( [ [None], [1,2] ] )
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unorderable types: int() < NoneType()
Actually my sublists always have 8 values where one is a None, and I have from 2 to 4 sublists.
So, I wrote a little lambda that changes a None to 0, because the ordering does not matter at all, I just need to assure that the order is the same:
>>> (lambda x: x if x is not None else 0)(None)
0
>>> (lambda x: x if x is not None else 0)(1)
1
But it does not work,
>>> sorted( [ [None], [1,2] ], key = lambda x: x if x is not None else 0 )
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unorderable types: int() < NoneType()
The error message mislead me to think that changing NoneType to IntType would fix, but I know that the x value in the lambda is one of the sublists and that's why the lambda just does not work. But I do not know how to fix it.