mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
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)
|