mirror of
https://github.com/ammaraskar/pyCraft.git
synced 2024-11-10 20:41:22 +01:00
16 lines
453 B
Python
16 lines
453 B
Python
from distutils.version import StrictVersion as SV
|
|
import unittest
|
|
|
|
import minecraft
|
|
|
|
|
|
class VersionTest(unittest.TestCase):
|
|
def test_module_version_is_a_valid_pep_386_strict_version(self):
|
|
SV(minecraft.__version__)
|
|
|
|
def test_minecraft_version_is_a_valid_pep_386_strict_version(self):
|
|
SV(minecraft.MINECRAFT_VERSION)
|
|
|
|
def test_protocol_version_is_an_int(self):
|
|
self.assertTrue(type(minecraft.PROTOCOL_VERSION) is int)
|