split config and property code, first test

This commit is contained in:
Jakob Ketterl
2020-03-21 22:40:39 +01:00
parent 7948b7bfa1
commit 541c38151f
24 changed files with 210 additions and 193 deletions

View File

View File

@ -0,0 +1,8 @@
import unittest
from owrx.property import Property
class PropertyTest(unittest.TestCase):
def testSimple(self):
prop = Property("testvalue")
self.assertEqual(prop.getValue(), "testvalue")