data
debian
docs
example
help
m4
mac
po
src
test
GrampsDb
GrampsLogger
RelLib
RelLib_Test.py
LosHawlos_bsddbtest.py
LosHawlos_dbtest.py
RunAllTests.py
dates.sh
det_ancestor_report.sh
det_descendant_report.sh
impex.sh
runtest.sh
tools.sh
windows
AUTHORS
COPYING
FAQ
INSTALL
Makefile.am
NEWS
README
RELEASE_NOTES
TODO
TestPlan.txt
acinclude.m4
autogen.sh
config.rpath
configure.in
gramps-autogen.sh
gramps.sh.in
35 lines
544 B
Python
35 lines
544 B
Python
import unittest
|
|
import logging
|
|
import os
|
|
import tempfile
|
|
import shutil
|
|
import time
|
|
import traceback
|
|
import sys
|
|
|
|
|
|
try:
|
|
set()
|
|
except NameError:
|
|
from sets import Set as set
|
|
|
|
|
|
import RelLib
|
|
|
|
logger = logging.getLogger('Gramps.RelLib_Test')
|
|
|
|
|
|
class PrimaryObjectTest (unittest.TestCase):
|
|
"""Test methods on the PrimaryObject class"""
|
|
|
|
|
|
pass
|
|
|
|
|
|
def testSuite():
|
|
suite = unittest.makeSuite(PrimaryObjectTest,'test')
|
|
return suite
|
|
|
|
if __name__ == '__main__':
|
|
unittest.TextTestRunner().run(testSuite())
|