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