mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-01-02 23:00:16 +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)
|