OpenWebRX_Solar_SDR/openwebrx/test/property/test_property_deletion.py
Carsten Schmiemann 0c0cc5a490 Migrate to git
2022-02-10 23:48:55 +01:00

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)