mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-02-01 04:54:19 +01:00
9 lines
210 B
Python
9 lines
210 B
Python
import unittest
|
|
from owrx.property import Property
|
|
|
|
|
|
class PropertyTest(unittest.TestCase):
|
|
def testSimple(self):
|
|
prop = Property("testvalue")
|
|
self.assertEqual(prop.getValue(), "testvalue")
|