1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
import unittest
import six
from unittest.mock import MagicMock
from bugwarrior.services import Issue
class StringCompatTest(unittest.TestCase):
"""This class implements method to test correct and compatible
implementation of __str__ and __repr__ methods"""
def test_issue_str(self):
"check Issue class"
record = {}
origin = {'target': 'target',
'default_priority': 'prio',
'templates': 'templates',
'add_tags': []}
issue = Issue(record, origin)
issue.to_taskwarrior = MagicMock(return_value=record)
issue.get_default_description = MagicMock(return_value='description')
self.assertIsInstance(str(issue), six.string_types)
self.assertIsInstance(issue.__repr__(), six.string_types)
self.assertTrue(six.PY3 or hasattr(issue, '__unicode__'))
|