summaryrefslogtreecommitdiff
path: root/test3/test_buffer.py
diff options
context:
space:
mode:
authorINADA Naoki <songofacandy@gmail.com>2012-06-19 13:55:14 +0900
committerINADA Naoki <songofacandy@gmail.com>2012-06-19 13:55:14 +0900
commit0b38e86534130f625cbea2f9446e8e52ef5f5a06 (patch)
treef2df0546370c82b735725a17b412e16c78ca302f /test3/test_buffer.py
parent76f34667a02f461043a70d776ec05fc1f90bd9e9 (diff)
downloadmsgpack-python-0b38e86534130f625cbea2f9446e8e52ef5f5a06.tar.gz
unify tests for py2 and py3
Diffstat (limited to 'test3/test_buffer.py')
-rw-r--r--test3/test_buffer.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/test3/test_buffer.py b/test3/test_buffer.py
deleted file mode 100644
index 01310a0..0000000
--- a/test3/test_buffer.py
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env python
-# coding: utf-8
-
-from nose import main
-from nose.tools import *
-from msgpack import packb, unpackb
-
-def test_unpack_buffer():
- from array import array
- buf = array('b')
- buf.fromstring(packb(('foo', 'bar')))
- obj = unpackb(buf)
- assert_equal((b'foo', b'bar'), obj)
-
-if __name__ == '__main__':
- main()