split config and property code, first test
This commit is contained in:
0
test/property/__init__.py
Normal file
0
test/property/__init__.py
Normal file
8
test/property/test_property.py
Normal file
8
test/property/test_property.py
Normal 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")
|
Reference in New Issue
Block a user