make property deletions evaluate to false for convenience
This commit is contained in:
8
test/property/test_property_deletion.py
Normal file
8
test/property/test_property_deletion.py
Normal file
@ -0,0 +1,8 @@
|
||||
from unittest import TestCase
|
||||
from owrx.property import PropertyDeletion
|
||||
|
||||
|
||||
class PropertyDeletionTest(TestCase):
|
||||
def testDeletionEvaluatesToFalse(self):
|
||||
deletion = PropertyDeletion()
|
||||
self.assertFalse(deletion)
|
Reference in New Issue
Block a user