]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/python/tests/testobj.py
Add Python unit testing and coverage report to "make check"
[OpenSRF.git] / src / python / tests / testobj.py
1 class TestObject(object):
2     def __init__(self):
3         self.int = 1
4         self.string = "two"
5         self.array = [1,2,3,4]
6         self.dict = {'foo': 'bar', 'key': 'value'}
7         self.true = True
8         self.false = False
9         self.null = None
10
11