File: test_tuple.py

package info (click to toggle)
python-serializable 0.2.1%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 156 kB
  • sloc: python: 483; makefile: 11
file content (15 lines) | stat: -rw-r--r-- 348 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from serializable import (
    to_serializable_repr,
    from_serializable_repr,
    to_json,
    from_json,
)
from nose.tools import eq_

def test_tuple_to_serializable():
    x = (1, 2.0, "wolves")
    eq_(x, from_serializable_repr(to_serializable_repr(x)))

def test_tuple_to_json():
    x = (1, 2.0, "wolves")
    eq_(x, from_json(to_json(x)))