pyCraft/tests/test_compat.py
Jeppe Klitgaard cc184f3e4d Added tests for LongLong and UnsignedLongLong.
Implemented compatibility layer for the long type (has been removed in
py3)

Added test for long-type compat.
2015-04-16 17:05:44 +02:00

12 lines
279 B
Python

from minecraft import compat # noqa unused-import
import unittest # noqa unused-import
class TestCompatLong(unittest.TestCase):
def test_import_long(self):
from minecraft.compat import long # noqa unused-import
def test_long(self):
compat.long(45)