re-added dependencies, to get onionshare working in Tails again (fixes #16)

This commit is contained in:
Micah Lee 2014-05-27 21:08:56 +00:00
parent b05d13af46
commit 851777fe42
265 changed files with 71657 additions and 19 deletions

View file

@ -0,0 +1,24 @@
# -*- coding: utf-8 -*-
"""
flask.testsuite.deprecations
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Tests deprecation support.
:copyright: (c) 2011 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""
import flask
import unittest
from flask.testsuite import FlaskTestCase, catch_warnings
class DeprecationsTestCase(FlaskTestCase):
"""not used currently"""
def suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(DeprecationsTestCase))
return suite