9 lines
230 B
Python
9 lines
230 B
Python
from unittest import TestCase
|
|
from owrx.property import PropertyDeletion
|
|
|
|
|
|
class PropertyDeletionTest(TestCase):
|
|
def testDeletionEvaluatesToFalse(self):
|
|
deletion = PropertyDeletion()
|
|
self.assertFalse(deletion)
|