2014-10-29 02:04:34 +00:00
|
|
|
"""
|
|
|
|
Test the functions in the `theming` module
|
|
|
|
"""
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2016-08-21 13:39:46 +00:00
|
|
|
from poezio.theming import dump_tuple, read_tuple
|
2014-10-29 02:04:34 +00:00
|
|
|
|
|
|
|
def test_read_tuple():
|
|
|
|
assert read_tuple('1,-1,u') == ((1, -1), 'u')
|
2016-06-12 14:56:18 +00:00
|
|
|
assert read_tuple('1,2') == ((1, 2), '\0')
|
2014-10-29 02:04:34 +00:00
|
|
|
|
|
|
|
with pytest.raises(IndexError):
|
|
|
|
read_tuple('1')
|
|
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
read_tuple('toto')
|
|
|
|
|
|
|
|
def test_dump_tuple():
|
|
|
|
assert dump_tuple((1, 2)) == '1,2'
|
|
|
|
assert dump_tuple((1, )) == '1'
|
|
|
|
assert dump_tuple((1, 2, 'u')) == '1,2,u'
|
|
|
|
|
|
|
|
|