openwebrx-clone/test/property/test_property_deletion.py

9 lines
230 B
Python
Raw Normal View History

from unittest import TestCase
from owrx.property import PropertyDeletion
class PropertyDeletionTest(TestCase):
def testDeletionEvaluatesToFalse(self):
deletion = PropertyDeletion()
self.assertFalse(deletion)