Commit 084a593b authored by Barry Warsaw's avatar Barry Warsaw

Use BaseFramework as the base class instead of DBHomeTest.

parent 812c4c3f
# Test creation of a brand new database, and insertion of root objects. # Test creation of a brand new database, and insertion of root objects.
import unittest import unittest
from test_create import DBHomeTest from test_create import BaseFramework
class NewInsertsTest(DBHomeTest): class NewInsertsTest(BaseFramework):
def checkIsEmpty(self): def checkIsEmpty(self):
"""Checks that a newly created database is empty""" """Checks that a newly created database is empty"""
assert not self._root.has_key('names') assert not self._root.has_key('names')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment