Merge remote branch 'remotes/elrond/idea/tests_kill_db'

This commit is contained in:
Christopher Allan Webber 2011-06-12 09:11:39 -05:00
commit 2f968422e9

View File

@ -13,3 +13,14 @@
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from .. import globals
def setup_package():
pass
def teardown_package():
print "Killing db ..."
globals.db_connection.drop_database(globals.database.name)
print "... done"