openwebrx-clone/test/property/test_property.py

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")