Add empty string equality to null test

This commit is contained in:
Dane Springmeyer 2013-04-11 16:09:57 -07:00
parent 9da1f35b5e
commit 60eee883e5

View File

@ -232,6 +232,7 @@ def test_creation_of_bool():
null_equality = [
['hello',False,unicode],
[u'',False,unicode],
[0,False,int],
[123,False,int],
[0.0,False,float],