I have a question that I would like to test a given empty string msg = '' in python unittest but I could not found the right assertion function for it.
I have tried with:
self.assertIsNone(msg)
But I got an error
AssertionError: '' is not None
So I went on with
self.assertIsEmpty(msg)
But I got
object has no attribute 'assertIsEmpty'
Therefore, what is the correct way to check an empty string in unittest? Thanks