move new assertion helpers to util.py

This commit is contained in:
Georg Brandl
2014-09-21 18:54:01 +02:00
parent fa91f19e55
commit ac690b4b07
3 changed files with 38 additions and 36 deletions

View File

@@ -15,9 +15,9 @@ import re
import gettext
from subprocess import Popen, PIPE
from nose.tools import assert_true, assert_in, assert_equal
from nose.tools import assert_true, assert_equal
from util import with_app, gen_with_app, SkipTest
from util import with_app, gen_with_app, SkipTest, assert_in
@gen_with_app('gettext', srcdir='root-gettext')