summaryrefslogtreecommitdiff
path: root/test_sequnpack.py
diff options
context:
space:
mode:
authorNaoki INADA <inada-n@eagle>2009-06-27 12:04:11 +0900
committerNaoki INADA <inada-n@eagle>2009-06-27 12:04:11 +0900
commit04d8fc114b256a80f1fac4e04352d487c47f6768 (patch)
treef0ac0afc9ee1bc27b927e9511aa69c693ab2fc4c /test_sequnpack.py
parent26a8d5d90f487728f2ab1d3cd0289500d68300e1 (diff)
downloadmsgpack-python-04d8fc114b256a80f1fac4e04352d487c47f6768.tar.gz
Rename test files.
Diffstat (limited to 'test_sequnpack.py')
-rw-r--r--test_sequnpack.py36
1 files changed, 0 insertions, 36 deletions
diff --git a/test_sequnpack.py b/test_sequnpack.py
deleted file mode 100644
index 789ccd2..0000000
--- a/test_sequnpack.py
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/usr/bin/env python
-# coding: utf-8
-
-from __future__ import unicode_literals, print_function
-
-from msgpack import Unpacker
-
-def test_foobar():
- unpacker = Unpacker(read_size=3)
- unpacker.feed(b'foobar')
- assert unpacker.unpack() == ord('f')
- assert unpacker.unpack() == ord('o')
- assert unpacker.unpack() == ord('o')
- assert unpacker.unpack() == ord('b')
- assert unpacker.unpack() == ord('a')
- assert unpacker.unpack() == ord('r')
- try:
- o = unpacker.unpack()
- print("Oops!", o)
- assert 0
- except StopIteration:
- assert 1
- else:
- assert 0
- unpacker.feed(b'foo')
- unpacker.feed(b'bar')
-
- k = 0
- for o, e in zip(unpacker, b'foobarbaz'):
- assert o == ord(e)
- k += 1
- assert k == len(b'foobar')
-
-if __name__ == '__main__':
- test_foobar()
-