import unittest
class MyTestCase(unittest.TestCase):
def test_with_docstring(self):
"""Test that something does something \
i can fly
"""
def test_without_docstring(self):
pass
if __name__ == '__main__':
nose.run(argv=["nosetests" "***.py", "--verbosity=2"])
>>>Validation of ****** i can fly
>>>test_without_docstring (tmp.MyTestCase)
Как избавится от пробелов? (в одну строку писать нельзя т.к. PEP 8)
Такое решение не подходит:
import unittest
class MyTestCase(unittest.TestCase):
def test_with_docstring(self):
"""Test that something does something \
i can fly
"""
def test_without_docstring(self):
pass
if __name__ == '__main__':
nose.run(argv=["nosetests" "***.py", "--verbosity=2"])
>>>Validation of ****** i can fly
Или как вариант избавится от “\”