%PDF- %PDF-
| Direktori : /proc/self/root/lib/python3/dist-packages/nose2/tests/functional/ |
| Current File : //proc/self/root/lib/python3/dist-packages/nose2/tests/functional/test_util.py |
# -*- coding: utf-8 -*-
import six
from nose2.tests._common import TestCase, support_file
from nose2 import util
class UtilTests(TestCase):
def test_name_from_path(self):
test_module = support_file('scenario/tests_in_package/pkg1/test/test_things.py')
test_package_path = support_file('scenario/tests_in_package')
self.assertEqual(
util.name_from_path(test_module),
('pkg1.test.test_things', test_package_path)
)
def test_non_ascii_output(self):
class D:
def __init__(self):
self.out = []
def write(self, arg):
self.out.append(arg)
stream = D()
decorated = util._WritelnDecorator(stream)
string = six.u('\u00dcnic\u00f6de')
decorated.write(string)
str("".join(stream.out))