OpenSlides/tests/unit/utils/test_utils.py
2015-10-22 00:28:01 +02:00

12 lines
271 B
Python

from unittest import TestCase
from openslides.utils import utils
class ToRomanTest(TestCase):
def test_to_roman_result(self):
self.assertEqual(utils.to_roman(3), 'III')
def test_to_roman_none(self):
self.assertTrue(utils.to_roman(-3) is None)