* for PR#264: update CHANGES, add tests, small refactoring.

This commit is contained in:
Takayuki Shimizukawa
2014-08-10 16:28:31 +09:00
parent 5191696c5b
commit 68949656b2
4 changed files with 98 additions and 12 deletions

View File

@@ -23,6 +23,12 @@ from path import path
from nose import tools, SkipTest
try:
# Python >=3.3
from unittest import mock
except ImportError:
import mock
__all__ = [
'test_root', 'test_roots', 'raises', 'raises_msg',
@@ -30,6 +36,7 @@ __all__ = [
'ListOutput', 'TestApp', 'with_app', 'gen_with_app',
'path', 'with_tempdir',
'sprint', 'remove_unicode_literals',
'mock',
]